@genesislcap/foundation-ui 14.501.0 → 15.0.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 +451 -451
- package/dist/dts/react.d.ts +9 -9
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +5 -5
- package/package.json +19 -19
package/dist/dts/react.d.ts
CHANGED
|
@@ -159,6 +159,15 @@ export declare const Accordion: React.ForwardRefExoticComponent<
|
|
|
159
159
|
>;
|
|
160
160
|
export type AccordionRef = AccordionWC;
|
|
161
161
|
|
|
162
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
163
|
+
React.PropsWithChildren<
|
|
164
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
165
|
+
HTMLWCProps & {
|
|
166
|
+
}
|
|
167
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
168
|
+
>;
|
|
169
|
+
export type AiIndicatorRef = AiIndicatorWC;
|
|
170
|
+
|
|
162
171
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
163
172
|
React.PropsWithChildren<
|
|
164
173
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -170,15 +179,6 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
170
179
|
>;
|
|
171
180
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
172
181
|
|
|
173
|
-
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
174
|
-
React.PropsWithChildren<
|
|
175
|
-
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
176
|
-
HTMLWCProps & {
|
|
177
|
-
}
|
|
178
|
-
> & React.RefAttributes<AiIndicatorWC>
|
|
179
|
-
>;
|
|
180
|
-
export type AiIndicatorRef = AiIndicatorWC;
|
|
181
|
-
|
|
182
182
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
183
183
|
React.PropsWithChildren<
|
|
184
184
|
Omit<PublicOf<AnchorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -127,6 +127,11 @@ const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
|
127
127
|
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
128
128
|
});
|
|
129
129
|
|
|
130
|
+
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
131
|
+
const { children, ...rest } = props;
|
|
132
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
133
|
+
});
|
|
134
|
+
|
|
130
135
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
131
136
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
132
137
|
const _innerRef = React.useRef(null);
|
|
@@ -149,11 +154,6 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
149
154
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
150
155
|
});
|
|
151
156
|
|
|
152
|
-
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
153
|
-
const { children, ...rest } = props;
|
|
154
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
155
|
-
});
|
|
156
|
-
|
|
157
157
|
const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
158
158
|
const { children, ...rest } = props;
|
|
159
159
|
return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
|
|
@@ -1128,8 +1128,8 @@ module.exports = {
|
|
|
1128
1128
|
AccordionItem,
|
|
1129
1129
|
ActionsMenu,
|
|
1130
1130
|
Accordion,
|
|
1131
|
-
AiCriteriaSearch,
|
|
1132
1131
|
AiIndicator,
|
|
1132
|
+
AiCriteriaSearch,
|
|
1133
1133
|
Anchor,
|
|
1134
1134
|
AnchoredRegion,
|
|
1135
1135
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -125,6 +125,11 @@ export const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
|
125
125
|
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
126
126
|
});
|
|
127
127
|
|
|
128
|
+
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
129
|
+
const { children, ...rest } = props;
|
|
130
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
131
|
+
});
|
|
132
|
+
|
|
128
133
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
129
134
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
130
135
|
const _innerRef = React.useRef(null);
|
|
@@ -147,11 +152,6 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
147
152
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
148
153
|
});
|
|
149
154
|
|
|
150
|
-
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
151
|
-
const { children, ...rest } = props;
|
|
152
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
153
|
-
});
|
|
154
|
-
|
|
155
155
|
export const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
156
156
|
const { children, ...rest } = props;
|
|
157
157
|
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-ui",
|
|
3
3
|
"description": "Genesis Foundation UI",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "15.0.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -85,13 +85,13 @@
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@genesislcap/foundation-testing": "
|
|
89
|
-
"@genesislcap/genx": "
|
|
90
|
-
"@genesislcap/rollup-builder": "
|
|
91
|
-
"@genesislcap/ts-builder": "
|
|
92
|
-
"@genesislcap/uvu-playwright-builder": "
|
|
93
|
-
"@genesislcap/vite-builder": "
|
|
94
|
-
"@genesislcap/webpack-builder": "
|
|
88
|
+
"@genesislcap/foundation-testing": "15.0.0",
|
|
89
|
+
"@genesislcap/genx": "15.0.0",
|
|
90
|
+
"@genesislcap/rollup-builder": "15.0.0",
|
|
91
|
+
"@genesislcap/ts-builder": "15.0.0",
|
|
92
|
+
"@genesislcap/uvu-playwright-builder": "15.0.0",
|
|
93
|
+
"@genesislcap/vite-builder": "15.0.0",
|
|
94
|
+
"@genesislcap/webpack-builder": "15.0.0",
|
|
95
95
|
"copyfiles": "^2.4.1"
|
|
96
96
|
},
|
|
97
97
|
"dependencies": {
|
|
@@ -100,16 +100,16 @@
|
|
|
100
100
|
"@fortawesome/free-regular-svg-icons": "^6.2.1",
|
|
101
101
|
"@fortawesome/free-solid-svg-icons": "^6.2.1",
|
|
102
102
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
|
|
103
|
-
"@genesislcap/expression-builder": "
|
|
104
|
-
"@genesislcap/foundation-ai": "
|
|
105
|
-
"@genesislcap/foundation-comms": "
|
|
106
|
-
"@genesislcap/foundation-criteria": "
|
|
107
|
-
"@genesislcap/foundation-errors": "
|
|
108
|
-
"@genesislcap/foundation-events": "
|
|
109
|
-
"@genesislcap/foundation-logger": "
|
|
110
|
-
"@genesislcap/foundation-notifications": "
|
|
111
|
-
"@genesislcap/foundation-user": "
|
|
112
|
-
"@genesislcap/foundation-utils": "
|
|
103
|
+
"@genesislcap/expression-builder": "15.0.0",
|
|
104
|
+
"@genesislcap/foundation-ai": "15.0.0",
|
|
105
|
+
"@genesislcap/foundation-comms": "15.0.0",
|
|
106
|
+
"@genesislcap/foundation-criteria": "15.0.0",
|
|
107
|
+
"@genesislcap/foundation-errors": "15.0.0",
|
|
108
|
+
"@genesislcap/foundation-events": "15.0.0",
|
|
109
|
+
"@genesislcap/foundation-logger": "15.0.0",
|
|
110
|
+
"@genesislcap/foundation-notifications": "15.0.0",
|
|
111
|
+
"@genesislcap/foundation-user": "15.0.0",
|
|
112
|
+
"@genesislcap/foundation-utils": "15.0.0",
|
|
113
113
|
"@microsoft/fast-colors": "5.3.1",
|
|
114
114
|
"@microsoft/fast-components": "2.30.6",
|
|
115
115
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -142,5 +142,5 @@
|
|
|
142
142
|
"require": "./dist/react.cjs"
|
|
143
143
|
}
|
|
144
144
|
},
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "035852ede9f26ea4434f1b3dfaff98db41490246"
|
|
146
146
|
}
|