@genesislcap/foundation-zero 14.496.2-alpha-da9ccbd.0 → 14.497.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 +629 -629
- 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,15 +140,6 @@ 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
|
-
|
|
152
143
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
153
144
|
React.PropsWithChildren<
|
|
154
145
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -169,6 +160,15 @@ export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
|
169
160
|
>;
|
|
170
161
|
export type AiIndicatorRef = AiIndicatorWC;
|
|
171
162
|
|
|
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,11 +112,6 @@ 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
|
-
|
|
120
115
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
121
116
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
122
117
|
const _innerRef = React.useRef(null);
|
|
@@ -144,6 +139,11 @@ const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
|
144
139
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
145
140
|
});
|
|
146
141
|
|
|
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,
|
|
1028
1027
|
AiCriteriaSearch,
|
|
1029
1028
|
AiIndicator,
|
|
1029
|
+
ActionsMenu,
|
|
1030
1030
|
Anchor,
|
|
1031
1031
|
AnchoredRegion,
|
|
1032
1032
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -110,11 +110,6 @@ 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
|
-
|
|
118
113
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
119
114
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
120
115
|
const _innerRef = React.useRef(null);
|
|
@@ -142,6 +137,11 @@ export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
|
142
137
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
143
138
|
});
|
|
144
139
|
|
|
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.497.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.497.0",
|
|
77
|
+
"@genesislcap/rollup-builder": "14.497.0",
|
|
78
|
+
"@genesislcap/ts-builder": "14.497.0",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "14.497.0",
|
|
80
|
+
"@genesislcap/vite-builder": "14.497.0",
|
|
81
|
+
"@genesislcap/webpack-builder": "14.497.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.497.0",
|
|
85
|
+
"@genesislcap/foundation-logger": "14.497.0",
|
|
86
|
+
"@genesislcap/foundation-ui": "14.497.0",
|
|
87
|
+
"@genesislcap/foundation-utils": "14.497.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": "8859a3cd83bd40fc5e5bbff9be5ebe02380fb6ec"
|
|
115
115
|
}
|