@genesislcap/foundation-zero 14.497.0 → 14.498.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 +637 -627
- 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'> &
|
|
@@ -160,15 +169,6 @@ export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
|
160
169
|
>;
|
|
161
170
|
export type AiIndicatorRef = AiIndicatorWC;
|
|
162
171
|
|
|
163
|
-
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
164
|
-
React.PropsWithChildren<
|
|
165
|
-
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
166
|
-
HTMLWCProps & {
|
|
167
|
-
}
|
|
168
|
-
> & React.RefAttributes<ActionsMenuWC>
|
|
169
|
-
>;
|
|
170
|
-
export type ActionsMenuRef = ActionsMenuWC;
|
|
171
|
-
|
|
172
172
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
173
173
|
React.PropsWithChildren<
|
|
174
174
|
Omit<PublicOf<AnchorWC>, '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);
|
|
@@ -139,11 +144,6 @@ const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
|
139
144
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
140
145
|
});
|
|
141
146
|
|
|
142
|
-
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
143
|
-
const { children, ...rest } = props;
|
|
144
|
-
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
145
|
-
});
|
|
146
|
-
|
|
147
147
|
const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
148
148
|
const { children, ...rest } = props;
|
|
149
149
|
return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
|
|
@@ -1024,9 +1024,9 @@ const UrlInput = React.forwardRef(function UrlInput(props, ref) {
|
|
|
1024
1024
|
module.exports = {
|
|
1025
1025
|
Accordion,
|
|
1026
1026
|
AccordionItem,
|
|
1027
|
+
ActionsMenu,
|
|
1027
1028
|
AiCriteriaSearch,
|
|
1028
1029
|
AiIndicator,
|
|
1029
|
-
ActionsMenu,
|
|
1030
1030
|
Anchor,
|
|
1031
1031
|
AnchoredRegion,
|
|
1032
1032
|
Avatar,
|
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);
|
|
@@ -137,11 +142,6 @@ export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
|
137
142
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
138
143
|
});
|
|
139
144
|
|
|
140
|
-
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
141
|
-
const { children, ...rest } = props;
|
|
142
|
-
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
143
|
-
});
|
|
144
|
-
|
|
145
145
|
export const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
146
146
|
const { children, ...rest } = props;
|
|
147
147
|
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-zero",
|
|
3
3
|
"description": "Genesis Foundation Zero Design System",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.498.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.498.0",
|
|
77
|
+
"@genesislcap/rollup-builder": "14.498.0",
|
|
78
|
+
"@genesislcap/ts-builder": "14.498.0",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "14.498.0",
|
|
80
|
+
"@genesislcap/vite-builder": "14.498.0",
|
|
81
|
+
"@genesislcap/webpack-builder": "14.498.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.498.0",
|
|
85
|
+
"@genesislcap/foundation-logger": "14.498.0",
|
|
86
|
+
"@genesislcap/foundation-ui": "14.498.0",
|
|
87
|
+
"@genesislcap/foundation-utils": "14.498.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": "88a07e46851fa94efc9399c50975c9eb2c21168c"
|
|
115
115
|
}
|