@genesislcap/foundation-zero 15.9.0 → 15.10.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 +437 -376
- 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
|
@@ -151,6 +151,15 @@ export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
|
151
151
|
>;
|
|
152
152
|
export type ActionsMenuRef = ActionsMenuWC;
|
|
153
153
|
|
|
154
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
155
|
+
React.PropsWithChildren<
|
|
156
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
157
|
+
HTMLWCProps & {
|
|
158
|
+
}
|
|
159
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
160
|
+
>;
|
|
161
|
+
export type AiIndicatorRef = AiIndicatorWC;
|
|
162
|
+
|
|
154
163
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
155
164
|
React.PropsWithChildren<
|
|
156
165
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -162,15 +171,6 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
162
171
|
>;
|
|
163
172
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
164
173
|
|
|
165
|
-
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
166
|
-
React.PropsWithChildren<
|
|
167
|
-
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
168
|
-
HTMLWCProps & {
|
|
169
|
-
}
|
|
170
|
-
> & React.RefAttributes<AiIndicatorWC>
|
|
171
|
-
>;
|
|
172
|
-
export type AiIndicatorRef = AiIndicatorWC;
|
|
173
|
-
|
|
174
174
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
175
175
|
React.PropsWithChildren<
|
|
176
176
|
Omit<PublicOf<AnchorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -119,6 +119,11 @@ const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
119
119
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
120
120
|
});
|
|
121
121
|
|
|
122
|
+
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
123
|
+
const { children, ...rest } = props;
|
|
124
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
125
|
+
});
|
|
126
|
+
|
|
122
127
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
123
128
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
124
129
|
const _innerRef = React.useRef(null);
|
|
@@ -141,11 +146,6 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
141
146
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
142
147
|
});
|
|
143
148
|
|
|
144
|
-
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
145
|
-
const { children, ...rest } = props;
|
|
146
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
147
|
-
});
|
|
148
|
-
|
|
149
149
|
const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
150
150
|
const { children, ...rest } = props;
|
|
151
151
|
return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
|
|
@@ -1066,8 +1066,8 @@ module.exports = {
|
|
|
1066
1066
|
Accordion,
|
|
1067
1067
|
AccordionItem,
|
|
1068
1068
|
ActionsMenu,
|
|
1069
|
-
AiCriteriaSearch,
|
|
1070
1069
|
AiIndicator,
|
|
1070
|
+
AiCriteriaSearch,
|
|
1071
1071
|
Anchor,
|
|
1072
1072
|
AnchoredRegion,
|
|
1073
1073
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -117,6 +117,11 @@ export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
117
117
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
118
118
|
});
|
|
119
119
|
|
|
120
|
+
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
121
|
+
const { children, ...rest } = props;
|
|
122
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
123
|
+
});
|
|
124
|
+
|
|
120
125
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
121
126
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
122
127
|
const _innerRef = React.useRef(null);
|
|
@@ -139,11 +144,6 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
139
144
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
140
145
|
});
|
|
141
146
|
|
|
142
|
-
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
143
|
-
const { children, ...rest } = props;
|
|
144
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
145
|
-
});
|
|
146
|
-
|
|
147
147
|
export 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);
|
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": "15.
|
|
4
|
+
"version": "15.10.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": "15.
|
|
77
|
-
"@genesislcap/rollup-builder": "15.
|
|
78
|
-
"@genesislcap/ts-builder": "15.
|
|
79
|
-
"@genesislcap/uvu-playwright-builder": "15.
|
|
80
|
-
"@genesislcap/vite-builder": "15.
|
|
81
|
-
"@genesislcap/webpack-builder": "15.
|
|
76
|
+
"@genesislcap/genx": "15.10.0",
|
|
77
|
+
"@genesislcap/rollup-builder": "15.10.0",
|
|
78
|
+
"@genesislcap/ts-builder": "15.10.0",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "15.10.0",
|
|
80
|
+
"@genesislcap/vite-builder": "15.10.0",
|
|
81
|
+
"@genesislcap/webpack-builder": "15.10.0"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@genesislcap/foundation-comms": "15.
|
|
85
|
-
"@genesislcap/foundation-logger": "15.
|
|
86
|
-
"@genesislcap/foundation-ui": "15.
|
|
87
|
-
"@genesislcap/foundation-utils": "15.
|
|
84
|
+
"@genesislcap/foundation-comms": "15.10.0",
|
|
85
|
+
"@genesislcap/foundation-logger": "15.10.0",
|
|
86
|
+
"@genesislcap/foundation-ui": "15.10.0",
|
|
87
|
+
"@genesislcap/foundation-utils": "15.10.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": "83fc356fb2a585ea66bc15458dbd176c8247c68f"
|
|
115
115
|
}
|