@genesislcap/foundation-zero 14.494.0 → 14.495.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 +1236 -1236
- package/dist/dts/react.d.ts +17 -17
- package/dist/react.cjs +11 -11
- package/dist/react.mjs +9 -9
- 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'> &
|
|
@@ -385,23 +385,23 @@ export declare const DropdownMenu: React.ForwardRefExoticComponent<
|
|
|
385
385
|
>;
|
|
386
386
|
export type DropdownMenuRef = DropdownMenuWC;
|
|
387
387
|
|
|
388
|
-
export declare const
|
|
388
|
+
export declare const EnvironmentIndicator: React.ForwardRefExoticComponent<
|
|
389
389
|
React.PropsWithChildren<
|
|
390
|
-
Omit<PublicOf<
|
|
390
|
+
Omit<PublicOf<EnvironmentIndicatorWC>, 'children' | 'style'> &
|
|
391
391
|
HTMLWCProps & {
|
|
392
392
|
}
|
|
393
|
-
> & React.RefAttributes<
|
|
393
|
+
> & React.RefAttributes<EnvironmentIndicatorWC>
|
|
394
394
|
>;
|
|
395
|
-
export type
|
|
395
|
+
export type EnvironmentIndicatorRef = EnvironmentIndicatorWC;
|
|
396
396
|
|
|
397
|
-
export declare const
|
|
397
|
+
export declare const ErrorBanner: React.ForwardRefExoticComponent<
|
|
398
398
|
React.PropsWithChildren<
|
|
399
|
-
Omit<PublicOf<
|
|
399
|
+
Omit<PublicOf<ErrorBannerWC>, 'children' | 'style'> &
|
|
400
400
|
HTMLWCProps & {
|
|
401
401
|
}
|
|
402
|
-
> & React.RefAttributes<
|
|
402
|
+
> & React.RefAttributes<ErrorBannerWC>
|
|
403
403
|
>;
|
|
404
|
-
export type
|
|
404
|
+
export type ErrorBannerRef = ErrorBannerWC;
|
|
405
405
|
|
|
406
406
|
export declare const ErrorBoundary: React.ForwardRefExoticComponent<
|
|
407
407
|
React.PropsWithChildren<
|
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);
|
|
@@ -360,14 +360,14 @@ const DropdownMenu = React.forwardRef(function DropdownMenu(props, ref) {
|
|
|
360
360
|
return React.createElement(customElements.getName(DropdownMenuWC) ?? '%%prefix%%-dropdown-menu', { ...rest, ref }, children);
|
|
361
361
|
});
|
|
362
362
|
|
|
363
|
-
const
|
|
363
|
+
const EnvironmentIndicator = React.forwardRef(function EnvironmentIndicator(props, ref) {
|
|
364
364
|
const { children, ...rest } = props;
|
|
365
|
-
return React.createElement(customElements.getName(
|
|
365
|
+
return React.createElement(customElements.getName(EnvironmentIndicatorWC) ?? '%%prefix%%-environment-indicator', { ...rest, ref }, children);
|
|
366
366
|
});
|
|
367
367
|
|
|
368
|
-
const
|
|
368
|
+
const ErrorBanner = React.forwardRef(function ErrorBanner(props, ref) {
|
|
369
369
|
const { children, ...rest } = props;
|
|
370
|
-
return React.createElement(customElements.getName(
|
|
370
|
+
return React.createElement(customElements.getName(ErrorBannerWC) ?? '%%prefix%%-error-banner', { ...rest, ref }, children);
|
|
371
371
|
});
|
|
372
372
|
|
|
373
373
|
const ErrorBoundary = React.forwardRef(function ErrorBoundary(props, ref) {
|
|
@@ -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,
|
|
@@ -1050,8 +1050,8 @@ module.exports = {
|
|
|
1050
1050
|
Disclosure,
|
|
1051
1051
|
Divider,
|
|
1052
1052
|
DropdownMenu,
|
|
1053
|
-
ErrorBanner,
|
|
1054
1053
|
EnvironmentIndicator,
|
|
1054
|
+
ErrorBanner,
|
|
1055
1055
|
ErrorBoundary,
|
|
1056
1056
|
ErrorDialog,
|
|
1057
1057
|
ZeroExpressionBuilder,
|
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);
|
|
@@ -358,14 +358,14 @@ export const DropdownMenu = React.forwardRef(function DropdownMenu(props, ref) {
|
|
|
358
358
|
return React.createElement(customElements.getName(DropdownMenuWC) ?? '%%prefix%%-dropdown-menu', { ...rest, ref }, children);
|
|
359
359
|
});
|
|
360
360
|
|
|
361
|
-
export const
|
|
361
|
+
export const EnvironmentIndicator = React.forwardRef(function EnvironmentIndicator(props, ref) {
|
|
362
362
|
const { children, ...rest } = props;
|
|
363
|
-
return React.createElement(customElements.getName(
|
|
363
|
+
return React.createElement(customElements.getName(EnvironmentIndicatorWC) ?? '%%prefix%%-environment-indicator', { ...rest, ref }, children);
|
|
364
364
|
});
|
|
365
365
|
|
|
366
|
-
export const
|
|
366
|
+
export const ErrorBanner = React.forwardRef(function ErrorBanner(props, ref) {
|
|
367
367
|
const { children, ...rest } = props;
|
|
368
|
-
return React.createElement(customElements.getName(
|
|
368
|
+
return React.createElement(customElements.getName(ErrorBannerWC) ?? '%%prefix%%-error-banner', { ...rest, ref }, children);
|
|
369
369
|
});
|
|
370
370
|
|
|
371
371
|
export const ErrorBoundary = React.forwardRef(function ErrorBoundary(props, ref) {
|
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.495.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.495.0",
|
|
77
|
+
"@genesislcap/rollup-builder": "14.495.0",
|
|
78
|
+
"@genesislcap/ts-builder": "14.495.0",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "14.495.0",
|
|
80
|
+
"@genesislcap/vite-builder": "14.495.0",
|
|
81
|
+
"@genesislcap/webpack-builder": "14.495.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.495.0",
|
|
85
|
+
"@genesislcap/foundation-logger": "14.495.0",
|
|
86
|
+
"@genesislcap/foundation-ui": "14.495.0",
|
|
87
|
+
"@genesislcap/foundation-utils": "14.495.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": "24d26a75271717d40c0b6168b983bd8536a3db7f"
|
|
115
115
|
}
|