@genesislcap/foundation-zero 14.443.0 → 14.443.1
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 +406 -406
- 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,6 +144,15 @@ 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
|
+
|
|
147
156
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
148
157
|
React.PropsWithChildren<
|
|
149
158
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -155,15 +164,6 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
155
164
|
>;
|
|
156
165
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
157
166
|
|
|
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,6 +114,11 @@ 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
|
+
|
|
117
122
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
118
123
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
119
124
|
const _innerRef = React.useRef(null);
|
|
@@ -136,11 +141,6 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
136
141
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
137
142
|
});
|
|
138
143
|
|
|
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
|
-
AiCriteriaSearch,
|
|
864
863
|
AiIndicator,
|
|
864
|
+
AiCriteriaSearch,
|
|
865
865
|
Anchor,
|
|
866
866
|
AnchoredRegion,
|
|
867
867
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -112,6 +112,11 @@ 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
|
+
|
|
115
120
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
116
121
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
117
122
|
const _innerRef = React.useRef(null);
|
|
@@ -134,11 +139,6 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
134
139
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
135
140
|
});
|
|
136
141
|
|
|
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.443.
|
|
4
|
+
"version": "14.443.1",
|
|
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.443.
|
|
77
|
-
"@genesislcap/rollup-builder": "14.443.
|
|
78
|
-
"@genesislcap/ts-builder": "14.443.
|
|
79
|
-
"@genesislcap/uvu-playwright-builder": "14.443.
|
|
80
|
-
"@genesislcap/vite-builder": "14.443.
|
|
81
|
-
"@genesislcap/webpack-builder": "14.443.
|
|
76
|
+
"@genesislcap/genx": "14.443.1",
|
|
77
|
+
"@genesislcap/rollup-builder": "14.443.1",
|
|
78
|
+
"@genesislcap/ts-builder": "14.443.1",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "14.443.1",
|
|
80
|
+
"@genesislcap/vite-builder": "14.443.1",
|
|
81
|
+
"@genesislcap/webpack-builder": "14.443.1"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@genesislcap/foundation-comms": "14.443.
|
|
85
|
-
"@genesislcap/foundation-logger": "14.443.
|
|
86
|
-
"@genesislcap/foundation-ui": "14.443.
|
|
87
|
-
"@genesislcap/foundation-utils": "14.443.
|
|
84
|
+
"@genesislcap/foundation-comms": "14.443.1",
|
|
85
|
+
"@genesislcap/foundation-logger": "14.443.1",
|
|
86
|
+
"@genesislcap/foundation-ui": "14.443.1",
|
|
87
|
+
"@genesislcap/foundation-utils": "14.443.1",
|
|
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": "a10ca31c4ba209c31a50b507dc473ecd5791fc21"
|
|
115
115
|
}
|