@genesislcap/foundation-ui 15.3.3 → 15.3.5
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 +1049 -1049
- package/dist/dts/react.d.ts +8 -8
- package/dist/react.cjs +5 -5
- package/dist/react.mjs +4 -4
- package/package.json +19 -19
package/dist/dts/react.d.ts
CHANGED
|
@@ -162,23 +162,23 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
162
162
|
>;
|
|
163
163
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
164
164
|
|
|
165
|
-
export declare const
|
|
165
|
+
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
166
166
|
React.PropsWithChildren<
|
|
167
|
-
Omit<PublicOf<
|
|
167
|
+
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
168
168
|
HTMLWCProps & {
|
|
169
169
|
}
|
|
170
|
-
> & React.RefAttributes<
|
|
170
|
+
> & React.RefAttributes<AccordionWC>
|
|
171
171
|
>;
|
|
172
|
-
export type
|
|
172
|
+
export type AccordionRef = AccordionWC;
|
|
173
173
|
|
|
174
|
-
export declare const
|
|
174
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
175
175
|
React.PropsWithChildren<
|
|
176
|
-
Omit<PublicOf<
|
|
176
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
177
177
|
HTMLWCProps & {
|
|
178
178
|
}
|
|
179
|
-
> & React.RefAttributes<
|
|
179
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
180
180
|
>;
|
|
181
|
-
export type
|
|
181
|
+
export type AiIndicatorRef = AiIndicatorWC;
|
|
182
182
|
|
|
183
183
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
184
184
|
React.PropsWithChildren<
|
package/dist/react.cjs
CHANGED
|
@@ -145,14 +145,14 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
145
145
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
146
146
|
});
|
|
147
147
|
|
|
148
|
-
const
|
|
148
|
+
const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
149
149
|
const { children, ...rest } = props;
|
|
150
|
-
return React.createElement(customElements.getName(
|
|
150
|
+
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
151
151
|
});
|
|
152
152
|
|
|
153
|
-
const
|
|
153
|
+
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
154
154
|
const { children, ...rest } = props;
|
|
155
|
-
return React.createElement(customElements.getName(
|
|
155
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
156
156
|
});
|
|
157
157
|
|
|
158
158
|
const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
@@ -1146,8 +1146,8 @@ module.exports = {
|
|
|
1146
1146
|
AccordionItem,
|
|
1147
1147
|
ActionsMenu,
|
|
1148
1148
|
AiCriteriaSearch,
|
|
1149
|
-
AiIndicator,
|
|
1150
1149
|
Accordion,
|
|
1150
|
+
AiIndicator,
|
|
1151
1151
|
Anchor,
|
|
1152
1152
|
AnchoredRegion,
|
|
1153
1153
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -143,14 +143,14 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
143
143
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
144
144
|
});
|
|
145
145
|
|
|
146
|
-
export const
|
|
146
|
+
export const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
147
147
|
const { children, ...rest } = props;
|
|
148
|
-
return React.createElement(customElements.getName(
|
|
148
|
+
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
149
149
|
});
|
|
150
150
|
|
|
151
|
-
export const
|
|
151
|
+
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
152
152
|
const { children, ...rest } = props;
|
|
153
|
-
return React.createElement(customElements.getName(
|
|
153
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
154
154
|
});
|
|
155
155
|
|
|
156
156
|
export const Anchor = React.forwardRef(function Anchor(props, ref) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-ui",
|
|
3
3
|
"description": "Genesis Foundation UI",
|
|
4
|
-
"version": "15.3.
|
|
4
|
+
"version": "15.3.5",
|
|
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": "15.3.
|
|
89
|
-
"@genesislcap/genx": "15.3.
|
|
90
|
-
"@genesislcap/rollup-builder": "15.3.
|
|
91
|
-
"@genesislcap/ts-builder": "15.3.
|
|
92
|
-
"@genesislcap/uvu-playwright-builder": "15.3.
|
|
93
|
-
"@genesislcap/vite-builder": "15.3.
|
|
94
|
-
"@genesislcap/webpack-builder": "15.3.
|
|
88
|
+
"@genesislcap/foundation-testing": "15.3.5",
|
|
89
|
+
"@genesislcap/genx": "15.3.5",
|
|
90
|
+
"@genesislcap/rollup-builder": "15.3.5",
|
|
91
|
+
"@genesislcap/ts-builder": "15.3.5",
|
|
92
|
+
"@genesislcap/uvu-playwright-builder": "15.3.5",
|
|
93
|
+
"@genesislcap/vite-builder": "15.3.5",
|
|
94
|
+
"@genesislcap/webpack-builder": "15.3.5",
|
|
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": "15.3.
|
|
104
|
-
"@genesislcap/foundation-ai": "15.3.
|
|
105
|
-
"@genesislcap/foundation-comms": "15.3.
|
|
106
|
-
"@genesislcap/foundation-criteria": "15.3.
|
|
107
|
-
"@genesislcap/foundation-errors": "15.3.
|
|
108
|
-
"@genesislcap/foundation-events": "15.3.
|
|
109
|
-
"@genesislcap/foundation-logger": "15.3.
|
|
110
|
-
"@genesislcap/foundation-notifications": "15.3.
|
|
111
|
-
"@genesislcap/foundation-user": "15.3.
|
|
112
|
-
"@genesislcap/foundation-utils": "15.3.
|
|
103
|
+
"@genesislcap/expression-builder": "15.3.5",
|
|
104
|
+
"@genesislcap/foundation-ai": "15.3.5",
|
|
105
|
+
"@genesislcap/foundation-comms": "15.3.5",
|
|
106
|
+
"@genesislcap/foundation-criteria": "15.3.5",
|
|
107
|
+
"@genesislcap/foundation-errors": "15.3.5",
|
|
108
|
+
"@genesislcap/foundation-events": "15.3.5",
|
|
109
|
+
"@genesislcap/foundation-logger": "15.3.5",
|
|
110
|
+
"@genesislcap/foundation-notifications": "15.3.5",
|
|
111
|
+
"@genesislcap/foundation-user": "15.3.5",
|
|
112
|
+
"@genesislcap/foundation-utils": "15.3.5",
|
|
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": "dc772a3a6f1b3d1c249f1ffae27a13d29878609c"
|
|
146
146
|
}
|