@genesislcap/foundation-zero 14.443.1 → 14.444.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 +408 -408
- 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
|
@@ -144,15 +144,6 @@ export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
|
144
144
|
>;
|
|
145
145
|
export type ActionsMenuRef = ActionsMenuWC;
|
|
146
146
|
|
|
147
|
-
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
148
|
-
React.PropsWithChildren<
|
|
149
|
-
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
150
|
-
HTMLWCProps & {
|
|
151
|
-
}
|
|
152
|
-
> & React.RefAttributes<AiIndicatorWC>
|
|
153
|
-
>;
|
|
154
|
-
export type AiIndicatorRef = AiIndicatorWC;
|
|
155
|
-
|
|
156
147
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
157
148
|
React.PropsWithChildren<
|
|
158
149
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -164,6 +155,15 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
164
155
|
>;
|
|
165
156
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
166
157
|
|
|
158
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
159
|
+
React.PropsWithChildren<
|
|
160
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
161
|
+
HTMLWCProps & {
|
|
162
|
+
}
|
|
163
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
164
|
+
>;
|
|
165
|
+
export type AiIndicatorRef = AiIndicatorWC;
|
|
166
|
+
|
|
167
167
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
168
168
|
React.PropsWithChildren<
|
|
169
169
|
Omit<PublicOf<AnchorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -114,11 +114,6 @@ const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
114
114
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
115
115
|
});
|
|
116
116
|
|
|
117
|
-
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
118
|
-
const { children, ...rest } = props;
|
|
119
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
120
|
-
});
|
|
121
|
-
|
|
122
117
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
123
118
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
124
119
|
const _innerRef = React.useRef(null);
|
|
@@ -141,6 +136,11 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
141
136
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
142
137
|
});
|
|
143
138
|
|
|
139
|
+
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
140
|
+
const { children, ...rest } = props;
|
|
141
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
142
|
+
});
|
|
143
|
+
|
|
144
144
|
const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
145
145
|
const { children, ...rest } = props;
|
|
146
146
|
return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
|
|
@@ -860,8 +860,8 @@ module.exports = {
|
|
|
860
860
|
Accordion,
|
|
861
861
|
AccordionItem,
|
|
862
862
|
ActionsMenu,
|
|
863
|
-
AiIndicator,
|
|
864
863
|
AiCriteriaSearch,
|
|
864
|
+
AiIndicator,
|
|
865
865
|
Anchor,
|
|
866
866
|
AnchoredRegion,
|
|
867
867
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -112,11 +112,6 @@ export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
112
112
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
113
113
|
});
|
|
114
114
|
|
|
115
|
-
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
116
|
-
const { children, ...rest } = props;
|
|
117
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
118
|
-
});
|
|
119
|
-
|
|
120
115
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
121
116
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
122
117
|
const _innerRef = React.useRef(null);
|
|
@@ -139,6 +134,11 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
139
134
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
140
135
|
});
|
|
141
136
|
|
|
137
|
+
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
138
|
+
const { children, ...rest } = props;
|
|
139
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
140
|
+
});
|
|
141
|
+
|
|
142
142
|
export const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
143
143
|
const { children, ...rest } = props;
|
|
144
144
|
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.444.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.444.0",
|
|
77
|
+
"@genesislcap/rollup-builder": "14.444.0",
|
|
78
|
+
"@genesislcap/ts-builder": "14.444.0",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "14.444.0",
|
|
80
|
+
"@genesislcap/vite-builder": "14.444.0",
|
|
81
|
+
"@genesislcap/webpack-builder": "14.444.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.444.0",
|
|
85
|
+
"@genesislcap/foundation-logger": "14.444.0",
|
|
86
|
+
"@genesislcap/foundation-ui": "14.444.0",
|
|
87
|
+
"@genesislcap/foundation-utils": "14.444.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": "3d598096c30de8c3344a9ebb98988e33ddd7fe59"
|
|
115
115
|
}
|