@genesislcap/foundation-zero 14.439.0 → 14.439.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.
- package/dist/custom-elements.json +458 -458
- package/dist/dts/react.d.ts +9 -9
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +5 -5
- package/package.json +12 -12
package/dist/dts/react.d.ts
CHANGED
|
@@ -135,6 +135,15 @@ export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
|
135
135
|
>;
|
|
136
136
|
export type AccordionItemRef = AccordionItemWC;
|
|
137
137
|
|
|
138
|
+
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
139
|
+
React.PropsWithChildren<
|
|
140
|
+
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
141
|
+
HTMLWCProps & {
|
|
142
|
+
}
|
|
143
|
+
> & React.RefAttributes<ActionsMenuWC>
|
|
144
|
+
>;
|
|
145
|
+
export type ActionsMenuRef = ActionsMenuWC;
|
|
146
|
+
|
|
138
147
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
139
148
|
React.PropsWithChildren<
|
|
140
149
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -146,15 +155,6 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
146
155
|
>;
|
|
147
156
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
148
157
|
|
|
149
|
-
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
150
|
-
React.PropsWithChildren<
|
|
151
|
-
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
152
|
-
HTMLWCProps & {
|
|
153
|
-
}
|
|
154
|
-
> & React.RefAttributes<ActionsMenuWC>
|
|
155
|
-
>;
|
|
156
|
-
export type ActionsMenuRef = ActionsMenuWC;
|
|
157
|
-
|
|
158
158
|
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
159
159
|
React.PropsWithChildren<
|
|
160
160
|
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -109,6 +109,11 @@ const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
|
109
109
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
|
|
110
110
|
});
|
|
111
111
|
|
|
112
|
+
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
113
|
+
const { children, ...rest } = props;
|
|
114
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
115
|
+
});
|
|
116
|
+
|
|
112
117
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
113
118
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
114
119
|
const _innerRef = React.useRef(null);
|
|
@@ -131,11 +136,6 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
131
136
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
132
137
|
});
|
|
133
138
|
|
|
134
|
-
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
135
|
-
const { children, ...rest } = props;
|
|
136
|
-
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
137
|
-
});
|
|
138
|
-
|
|
139
139
|
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
140
140
|
const { children, ...rest } = props;
|
|
141
141
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
@@ -859,8 +859,8 @@ const UrlInput = React.forwardRef(function UrlInput(props, ref) {
|
|
|
859
859
|
module.exports = {
|
|
860
860
|
Accordion,
|
|
861
861
|
AccordionItem,
|
|
862
|
-
AiCriteriaSearch,
|
|
863
862
|
ActionsMenu,
|
|
863
|
+
AiCriteriaSearch,
|
|
864
864
|
AiIndicator,
|
|
865
865
|
Anchor,
|
|
866
866
|
AnchoredRegion,
|
package/dist/react.mjs
CHANGED
|
@@ -107,6 +107,11 @@ export const AccordionItem = React.forwardRef(function AccordionItem(props, ref)
|
|
|
107
107
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
|
|
108
108
|
});
|
|
109
109
|
|
|
110
|
+
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
111
|
+
const { children, ...rest } = props;
|
|
112
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
113
|
+
});
|
|
114
|
+
|
|
110
115
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
111
116
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
112
117
|
const _innerRef = React.useRef(null);
|
|
@@ -129,11 +134,6 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
129
134
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
130
135
|
});
|
|
131
136
|
|
|
132
|
-
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
133
|
-
const { children, ...rest } = props;
|
|
134
|
-
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
135
|
-
});
|
|
136
|
-
|
|
137
137
|
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
138
138
|
const { children, ...rest } = props;
|
|
139
139
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-zero",
|
|
3
3
|
"description": "Genesis Foundation Zero Design System",
|
|
4
|
-
"version": "14.439.
|
|
4
|
+
"version": "14.439.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -73,18 +73,18 @@
|
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
|
|
76
|
-
"@genesislcap/genx": "14.439.
|
|
77
|
-
"@genesislcap/rollup-builder": "14.439.
|
|
78
|
-
"@genesislcap/ts-builder": "14.439.
|
|
79
|
-
"@genesislcap/uvu-playwright-builder": "14.439.
|
|
80
|
-
"@genesislcap/vite-builder": "14.439.
|
|
81
|
-
"@genesislcap/webpack-builder": "14.439.
|
|
76
|
+
"@genesislcap/genx": "14.439.1",
|
|
77
|
+
"@genesislcap/rollup-builder": "14.439.1",
|
|
78
|
+
"@genesislcap/ts-builder": "14.439.1",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "14.439.1",
|
|
80
|
+
"@genesislcap/vite-builder": "14.439.1",
|
|
81
|
+
"@genesislcap/webpack-builder": "14.439.1"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@genesislcap/foundation-comms": "14.439.
|
|
85
|
-
"@genesislcap/foundation-logger": "14.439.
|
|
86
|
-
"@genesislcap/foundation-ui": "14.439.
|
|
87
|
-
"@genesislcap/foundation-utils": "14.439.
|
|
84
|
+
"@genesislcap/foundation-comms": "14.439.1",
|
|
85
|
+
"@genesislcap/foundation-logger": "14.439.1",
|
|
86
|
+
"@genesislcap/foundation-ui": "14.439.1",
|
|
87
|
+
"@genesislcap/foundation-utils": "14.439.1",
|
|
88
88
|
"@microsoft/fast-colors": "5.3.1",
|
|
89
89
|
"@microsoft/fast-components": "2.30.6",
|
|
90
90
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -111,5 +111,5 @@
|
|
|
111
111
|
"require": "./dist/react.cjs"
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "6fe08a1373139e13089e2b5c8f875c81fe59a0df"
|
|
115
115
|
}
|