@genesislcap/foundation-zero 14.488.2-GENC-1351.8 → 14.488.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 +426 -426
- 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
|
@@ -140,6 +140,15 @@ export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
|
140
140
|
>;
|
|
141
141
|
export type AccordionItemRef = AccordionItemWC;
|
|
142
142
|
|
|
143
|
+
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
144
|
+
React.PropsWithChildren<
|
|
145
|
+
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
146
|
+
HTMLWCProps & {
|
|
147
|
+
}
|
|
148
|
+
> & React.RefAttributes<ActionsMenuWC>
|
|
149
|
+
>;
|
|
150
|
+
export type ActionsMenuRef = ActionsMenuWC;
|
|
151
|
+
|
|
143
152
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
144
153
|
React.PropsWithChildren<
|
|
145
154
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -151,15 +160,6 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
151
160
|
>;
|
|
152
161
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
153
162
|
|
|
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
163
|
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
164
164
|
React.PropsWithChildren<
|
|
165
165
|
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -112,6 +112,11 @@ const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
|
112
112
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
|
|
113
113
|
});
|
|
114
114
|
|
|
115
|
+
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
116
|
+
const { children, ...rest } = props;
|
|
117
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
118
|
+
});
|
|
119
|
+
|
|
115
120
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
116
121
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
117
122
|
const _innerRef = React.useRef(null);
|
|
@@ -134,11 +139,6 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
134
139
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
135
140
|
});
|
|
136
141
|
|
|
137
|
-
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
138
|
-
const { children, ...rest } = props;
|
|
139
|
-
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
140
|
-
});
|
|
141
|
-
|
|
142
142
|
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
143
143
|
const { children, ...rest } = props;
|
|
144
144
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
@@ -988,8 +988,8 @@ const UrlInput = React.forwardRef(function UrlInput(props, ref) {
|
|
|
988
988
|
module.exports = {
|
|
989
989
|
Accordion,
|
|
990
990
|
AccordionItem,
|
|
991
|
-
AiCriteriaSearch,
|
|
992
991
|
ActionsMenu,
|
|
992
|
+
AiCriteriaSearch,
|
|
993
993
|
AiIndicator,
|
|
994
994
|
Anchor,
|
|
995
995
|
AnchoredRegion,
|
package/dist/react.mjs
CHANGED
|
@@ -110,6 +110,11 @@ export const AccordionItem = React.forwardRef(function AccordionItem(props, ref)
|
|
|
110
110
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
|
|
111
111
|
});
|
|
112
112
|
|
|
113
|
+
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
114
|
+
const { children, ...rest } = props;
|
|
115
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
116
|
+
});
|
|
117
|
+
|
|
113
118
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
114
119
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
115
120
|
const _innerRef = React.useRef(null);
|
|
@@ -132,11 +137,6 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
132
137
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
133
138
|
});
|
|
134
139
|
|
|
135
|
-
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
136
|
-
const { children, ...rest } = props;
|
|
137
|
-
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
138
|
-
});
|
|
139
|
-
|
|
140
140
|
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
141
141
|
const { children, ...rest } = props;
|
|
142
142
|
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.488.2
|
|
4
|
+
"version": "14.488.2",
|
|
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.488.2
|
|
77
|
-
"@genesislcap/rollup-builder": "14.488.2
|
|
78
|
-
"@genesislcap/ts-builder": "14.488.2
|
|
79
|
-
"@genesislcap/uvu-playwright-builder": "14.488.2
|
|
80
|
-
"@genesislcap/vite-builder": "14.488.2
|
|
81
|
-
"@genesislcap/webpack-builder": "14.488.2
|
|
76
|
+
"@genesislcap/genx": "14.488.2",
|
|
77
|
+
"@genesislcap/rollup-builder": "14.488.2",
|
|
78
|
+
"@genesislcap/ts-builder": "14.488.2",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "14.488.2",
|
|
80
|
+
"@genesislcap/vite-builder": "14.488.2",
|
|
81
|
+
"@genesislcap/webpack-builder": "14.488.2"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@genesislcap/foundation-comms": "14.488.2
|
|
85
|
-
"@genesislcap/foundation-logger": "14.488.2
|
|
86
|
-
"@genesislcap/foundation-ui": "14.488.2
|
|
87
|
-
"@genesislcap/foundation-utils": "14.488.2
|
|
84
|
+
"@genesislcap/foundation-comms": "14.488.2",
|
|
85
|
+
"@genesislcap/foundation-logger": "14.488.2",
|
|
86
|
+
"@genesislcap/foundation-ui": "14.488.2",
|
|
87
|
+
"@genesislcap/foundation-utils": "14.488.2",
|
|
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": "babd82759de2896aaec4b630259c716b59afb1b3"
|
|
115
115
|
}
|