@genesislcap/foundation-zero 14.438.1 → 14.439.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 +450 -450
- 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,15 +135,6 @@ 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
|
-
|
|
147
138
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
148
139
|
React.PropsWithChildren<
|
|
149
140
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -155,6 +146,15 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
155
146
|
>;
|
|
156
147
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
157
148
|
|
|
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,11 +109,6 @@ 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
|
-
|
|
117
112
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
118
113
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
119
114
|
const _innerRef = React.useRef(null);
|
|
@@ -136,6 +131,11 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
136
131
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
137
132
|
});
|
|
138
133
|
|
|
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
|
-
ActionsMenu,
|
|
863
862
|
AiCriteriaSearch,
|
|
863
|
+
ActionsMenu,
|
|
864
864
|
AiIndicator,
|
|
865
865
|
Anchor,
|
|
866
866
|
AnchoredRegion,
|
package/dist/react.mjs
CHANGED
|
@@ -107,11 +107,6 @@ 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
|
-
|
|
115
110
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
116
111
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
117
112
|
const _innerRef = React.useRef(null);
|
|
@@ -134,6 +129,11 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
134
129
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
135
130
|
});
|
|
136
131
|
|
|
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.
|
|
4
|
+
"version": "14.439.0",
|
|
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.
|
|
77
|
-
"@genesislcap/rollup-builder": "14.
|
|
78
|
-
"@genesislcap/ts-builder": "14.
|
|
79
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
80
|
-
"@genesislcap/vite-builder": "14.
|
|
81
|
-
"@genesislcap/webpack-builder": "14.
|
|
76
|
+
"@genesislcap/genx": "14.439.0",
|
|
77
|
+
"@genesislcap/rollup-builder": "14.439.0",
|
|
78
|
+
"@genesislcap/ts-builder": "14.439.0",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "14.439.0",
|
|
80
|
+
"@genesislcap/vite-builder": "14.439.0",
|
|
81
|
+
"@genesislcap/webpack-builder": "14.439.0"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@genesislcap/foundation-comms": "14.
|
|
85
|
-
"@genesislcap/foundation-logger": "14.
|
|
86
|
-
"@genesislcap/foundation-ui": "14.
|
|
87
|
-
"@genesislcap/foundation-utils": "14.
|
|
84
|
+
"@genesislcap/foundation-comms": "14.439.0",
|
|
85
|
+
"@genesislcap/foundation-logger": "14.439.0",
|
|
86
|
+
"@genesislcap/foundation-ui": "14.439.0",
|
|
87
|
+
"@genesislcap/foundation-utils": "14.439.0",
|
|
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": "25adab0e86be16092b258c8d7f429c4c6971d968"
|
|
115
115
|
}
|