@genesislcap/foundation-ui 14.419.2 → 14.421.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 +936 -936
- 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 Accordion: React.ForwardRefExoticComponent<
|
|
132
132
|
React.PropsWithChildren<
|
|
133
|
-
Omit<PublicOf<
|
|
133
|
+
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
134
134
|
HTMLWCProps & {
|
|
135
135
|
}
|
|
136
|
-
> & React.RefAttributes<
|
|
136
|
+
> & React.RefAttributes<AccordionWC>
|
|
137
137
|
>;
|
|
138
138
|
|
|
139
|
-
export declare const
|
|
139
|
+
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
140
140
|
React.PropsWithChildren<
|
|
141
|
-
Omit<PublicOf<
|
|
141
|
+
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
142
142
|
HTMLWCProps & {
|
|
143
|
-
onCriteriaChanged?: (event: CustomEvent<unknown>) => void;
|
|
144
|
-
onValidationErrors?: (event: CustomEvent<unknown>) => void;
|
|
145
143
|
}
|
|
146
|
-
> & React.RefAttributes<
|
|
144
|
+
> & React.RefAttributes<ActionsMenuWC>
|
|
147
145
|
>;
|
|
148
146
|
|
|
149
|
-
export declare const
|
|
147
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
150
148
|
React.PropsWithChildren<
|
|
151
|
-
Omit<PublicOf<
|
|
149
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
152
150
|
HTMLWCProps & {
|
|
153
151
|
}
|
|
154
|
-
> & React.RefAttributes<
|
|
152
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
155
153
|
>;
|
|
156
154
|
|
|
157
|
-
export declare const
|
|
155
|
+
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
158
156
|
React.PropsWithChildren<
|
|
159
|
-
Omit<PublicOf<
|
|
157
|
+
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
160
158
|
HTMLWCProps & {
|
|
159
|
+
onCriteriaChanged?: (event: CustomEvent<unknown>) => void;
|
|
160
|
+
onValidationErrors?: (event: CustomEvent<unknown>) => void;
|
|
161
161
|
}
|
|
162
|
-
> & React.RefAttributes<
|
|
162
|
+
> & React.RefAttributes<AiCriteriaSearchWC>
|
|
163
163
|
>;
|
|
164
164
|
|
|
165
165
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
package/dist/react.cjs
CHANGED
|
@@ -98,8 +98,12 @@ const { wrap } = provideReactWrapper(React);
|
|
|
98
98
|
|
|
99
99
|
const AccordionItem = wrap(AccordionItemWC);
|
|
100
100
|
|
|
101
|
+
const Accordion = wrap(AccordionWC);
|
|
102
|
+
|
|
101
103
|
const ActionsMenu = wrap(ActionsMenuWC);
|
|
102
104
|
|
|
105
|
+
const AiIndicator = wrap(AiIndicatorWC);
|
|
106
|
+
|
|
103
107
|
const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
104
108
|
events: {
|
|
105
109
|
onCriteriaChanged: 'criteria-changed',
|
|
@@ -107,10 +111,6 @@ const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
|
107
111
|
},
|
|
108
112
|
});
|
|
109
113
|
|
|
110
|
-
const Accordion = wrap(AccordionWC);
|
|
111
|
-
|
|
112
|
-
const AiIndicator = wrap(AiIndicatorWC);
|
|
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
|
-
ActionsMenu,
|
|
378
|
-
AiCriteriaSearch,
|
|
379
377
|
Accordion,
|
|
378
|
+
ActionsMenu,
|
|
380
379
|
AiIndicator,
|
|
380
|
+
AiCriteriaSearch,
|
|
381
381
|
Anchor,
|
|
382
382
|
AnchoredRegion,
|
|
383
383
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -96,8 +96,12 @@ const { wrap } = provideReactWrapper(React);
|
|
|
96
96
|
|
|
97
97
|
export const AccordionItem = wrap(AccordionItemWC);
|
|
98
98
|
|
|
99
|
+
export const Accordion = wrap(AccordionWC);
|
|
100
|
+
|
|
99
101
|
export const ActionsMenu = wrap(ActionsMenuWC);
|
|
100
102
|
|
|
103
|
+
export const AiIndicator = wrap(AiIndicatorWC);
|
|
104
|
+
|
|
101
105
|
export const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
102
106
|
events: {
|
|
103
107
|
onCriteriaChanged: 'criteria-changed',
|
|
@@ -105,10 +109,6 @@ export const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
|
105
109
|
},
|
|
106
110
|
});
|
|
107
111
|
|
|
108
|
-
export const Accordion = wrap(AccordionWC);
|
|
109
|
-
|
|
110
|
-
export const AiIndicator = wrap(AiIndicatorWC);
|
|
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.421.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": "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.421.0",
|
|
89
|
+
"@genesislcap/genx": "14.421.0",
|
|
90
|
+
"@genesislcap/rollup-builder": "14.421.0",
|
|
91
|
+
"@genesislcap/ts-builder": "14.421.0",
|
|
92
|
+
"@genesislcap/uvu-playwright-builder": "14.421.0",
|
|
93
|
+
"@genesislcap/vite-builder": "14.421.0",
|
|
94
|
+
"@genesislcap/webpack-builder": "14.421.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": "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.421.0",
|
|
104
|
+
"@genesislcap/foundation-ai": "14.421.0",
|
|
105
|
+
"@genesislcap/foundation-comms": "14.421.0",
|
|
106
|
+
"@genesislcap/foundation-criteria": "14.421.0",
|
|
107
|
+
"@genesislcap/foundation-errors": "14.421.0",
|
|
108
|
+
"@genesislcap/foundation-events": "14.421.0",
|
|
109
|
+
"@genesislcap/foundation-logger": "14.421.0",
|
|
110
|
+
"@genesislcap/foundation-notifications": "14.421.0",
|
|
111
|
+
"@genesislcap/foundation-user": "14.421.0",
|
|
112
|
+
"@genesislcap/foundation-utils": "14.421.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",
|
|
@@ -145,5 +145,5 @@
|
|
|
145
145
|
"peerDependencies": {
|
|
146
146
|
"@microsoft/fast-react-wrapper": ">=0.3.0"
|
|
147
147
|
},
|
|
148
|
-
"gitHead": "
|
|
148
|
+
"gitHead": "d109b70edbd07af351ed8bf393ace74b42bb5356"
|
|
149
149
|
}
|