@genesislcap/foundation-ui 14.423.0 → 14.424.0-react-dom-rendering.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 +892 -892
- package/dist/dts/react.d.ts +14 -14
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +4 -4
- package/package.json +19 -19
package/dist/dts/react.d.ts
CHANGED
|
@@ -128,38 +128,38 @@ export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
|
128
128
|
> & React.RefAttributes<AccordionItemWC>
|
|
129
129
|
>;
|
|
130
130
|
|
|
131
|
-
export declare const
|
|
131
|
+
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
132
132
|
React.PropsWithChildren<
|
|
133
|
-
Omit<PublicOf<
|
|
133
|
+
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
134
134
|
HTMLWCProps & {
|
|
135
|
-
onCriteriaChanged?: (event: CustomEvent<unknown>) => void;
|
|
136
|
-
onValidationErrors?: (event: CustomEvent<unknown>) => void;
|
|
137
135
|
}
|
|
138
|
-
> & React.RefAttributes<
|
|
136
|
+
> & React.RefAttributes<ActionsMenuWC>
|
|
139
137
|
>;
|
|
140
138
|
|
|
141
|
-
export declare const
|
|
139
|
+
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
142
140
|
React.PropsWithChildren<
|
|
143
|
-
Omit<PublicOf<
|
|
141
|
+
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
144
142
|
HTMLWCProps & {
|
|
145
143
|
}
|
|
146
|
-
> & React.RefAttributes<
|
|
144
|
+
> & React.RefAttributes<AccordionWC>
|
|
147
145
|
>;
|
|
148
146
|
|
|
149
|
-
export declare const
|
|
147
|
+
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
150
148
|
React.PropsWithChildren<
|
|
151
|
-
Omit<PublicOf<
|
|
149
|
+
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
152
150
|
HTMLWCProps & {
|
|
151
|
+
onCriteriaChanged?: (event: CustomEvent<unknown>) => void;
|
|
152
|
+
onValidationErrors?: (event: CustomEvent<unknown>) => void;
|
|
153
153
|
}
|
|
154
|
-
> & React.RefAttributes<
|
|
154
|
+
> & React.RefAttributes<AiCriteriaSearchWC>
|
|
155
155
|
>;
|
|
156
156
|
|
|
157
|
-
export declare const
|
|
157
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
158
158
|
React.PropsWithChildren<
|
|
159
|
-
Omit<PublicOf<
|
|
159
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
160
160
|
HTMLWCProps & {
|
|
161
161
|
}
|
|
162
|
-
> & React.RefAttributes<
|
|
162
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
163
163
|
>;
|
|
164
164
|
|
|
165
165
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
package/dist/react.cjs
CHANGED
|
@@ -98,6 +98,10 @@ const { wrap } = provideReactWrapper(React);
|
|
|
98
98
|
|
|
99
99
|
const AccordionItem = wrap(AccordionItemWC);
|
|
100
100
|
|
|
101
|
+
const ActionsMenu = wrap(ActionsMenuWC);
|
|
102
|
+
|
|
103
|
+
const Accordion = wrap(AccordionWC);
|
|
104
|
+
|
|
101
105
|
const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
102
106
|
events: {
|
|
103
107
|
onCriteriaChanged: 'criteria-changed',
|
|
@@ -105,12 +109,8 @@ const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
|
105
109
|
},
|
|
106
110
|
});
|
|
107
111
|
|
|
108
|
-
const ActionsMenu = wrap(ActionsMenuWC);
|
|
109
|
-
|
|
110
112
|
const AiIndicator = wrap(AiIndicatorWC);
|
|
111
113
|
|
|
112
|
-
const Accordion = wrap(AccordionWC);
|
|
113
|
-
|
|
114
114
|
const Anchor = wrap(AnchorWC);
|
|
115
115
|
|
|
116
116
|
const AnchoredRegion = wrap(AnchoredRegionWC, {
|
|
@@ -374,10 +374,10 @@ const UrlInput = wrap(UrlInputWC);
|
|
|
374
374
|
|
|
375
375
|
module.exports = {
|
|
376
376
|
AccordionItem,
|
|
377
|
-
AiCriteriaSearch,
|
|
378
377
|
ActionsMenu,
|
|
379
|
-
AiIndicator,
|
|
380
378
|
Accordion,
|
|
379
|
+
AiCriteriaSearch,
|
|
380
|
+
AiIndicator,
|
|
381
381
|
Anchor,
|
|
382
382
|
AnchoredRegion,
|
|
383
383
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -96,6 +96,10 @@ const { wrap } = provideReactWrapper(React);
|
|
|
96
96
|
|
|
97
97
|
export const AccordionItem = wrap(AccordionItemWC);
|
|
98
98
|
|
|
99
|
+
export const ActionsMenu = wrap(ActionsMenuWC);
|
|
100
|
+
|
|
101
|
+
export const Accordion = wrap(AccordionWC);
|
|
102
|
+
|
|
99
103
|
export const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
100
104
|
events: {
|
|
101
105
|
onCriteriaChanged: 'criteria-changed',
|
|
@@ -103,12 +107,8 @@ export const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
|
103
107
|
},
|
|
104
108
|
});
|
|
105
109
|
|
|
106
|
-
export const ActionsMenu = wrap(ActionsMenuWC);
|
|
107
|
-
|
|
108
110
|
export const AiIndicator = wrap(AiIndicatorWC);
|
|
109
111
|
|
|
110
|
-
export const Accordion = wrap(AccordionWC);
|
|
111
|
-
|
|
112
112
|
export const Anchor = wrap(AnchorWC);
|
|
113
113
|
|
|
114
114
|
export const AnchoredRegion = wrap(AnchoredRegionWC, {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-ui",
|
|
3
3
|
"description": "Genesis Foundation UI",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.424.0-react-dom-rendering.1",
|
|
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": "14.
|
|
89
|
-
"@genesislcap/genx": "14.
|
|
90
|
-
"@genesislcap/rollup-builder": "14.
|
|
91
|
-
"@genesislcap/ts-builder": "14.
|
|
92
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
93
|
-
"@genesislcap/vite-builder": "14.
|
|
94
|
-
"@genesislcap/webpack-builder": "14.
|
|
88
|
+
"@genesislcap/foundation-testing": "14.424.0-react-dom-rendering.1",
|
|
89
|
+
"@genesislcap/genx": "14.424.0-react-dom-rendering.1",
|
|
90
|
+
"@genesislcap/rollup-builder": "14.424.0-react-dom-rendering.1",
|
|
91
|
+
"@genesislcap/ts-builder": "14.424.0-react-dom-rendering.1",
|
|
92
|
+
"@genesislcap/uvu-playwright-builder": "14.424.0-react-dom-rendering.1",
|
|
93
|
+
"@genesislcap/vite-builder": "14.424.0-react-dom-rendering.1",
|
|
94
|
+
"@genesislcap/webpack-builder": "14.424.0-react-dom-rendering.1",
|
|
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": "14.
|
|
104
|
-
"@genesislcap/foundation-ai": "14.
|
|
105
|
-
"@genesislcap/foundation-comms": "14.
|
|
106
|
-
"@genesislcap/foundation-criteria": "14.
|
|
107
|
-
"@genesislcap/foundation-errors": "14.
|
|
108
|
-
"@genesislcap/foundation-events": "14.
|
|
109
|
-
"@genesislcap/foundation-logger": "14.
|
|
110
|
-
"@genesislcap/foundation-notifications": "14.
|
|
111
|
-
"@genesislcap/foundation-user": "14.
|
|
112
|
-
"@genesislcap/foundation-utils": "14.
|
|
103
|
+
"@genesislcap/expression-builder": "14.424.0-react-dom-rendering.1",
|
|
104
|
+
"@genesislcap/foundation-ai": "14.424.0-react-dom-rendering.1",
|
|
105
|
+
"@genesislcap/foundation-comms": "14.424.0-react-dom-rendering.1",
|
|
106
|
+
"@genesislcap/foundation-criteria": "14.424.0-react-dom-rendering.1",
|
|
107
|
+
"@genesislcap/foundation-errors": "14.424.0-react-dom-rendering.1",
|
|
108
|
+
"@genesislcap/foundation-events": "14.424.0-react-dom-rendering.1",
|
|
109
|
+
"@genesislcap/foundation-logger": "14.424.0-react-dom-rendering.1",
|
|
110
|
+
"@genesislcap/foundation-notifications": "14.424.0-react-dom-rendering.1",
|
|
111
|
+
"@genesislcap/foundation-user": "14.424.0-react-dom-rendering.1",
|
|
112
|
+
"@genesislcap/foundation-utils": "14.424.0-react-dom-rendering.1",
|
|
113
113
|
"@microsoft/fast-colors": "5.3.1",
|
|
114
114
|
"@microsoft/fast-components": "2.30.6",
|
|
115
115
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -145,5 +145,5 @@
|
|
|
145
145
|
"peerDependencies": {
|
|
146
146
|
"@microsoft/fast-react-wrapper": ">=0.3.0"
|
|
147
147
|
},
|
|
148
|
-
"gitHead": "
|
|
148
|
+
"gitHead": "473707e03212a5dfd5eb534b224cedef9d06a145"
|
|
149
149
|
}
|