@genesislcap/foundation-zero 14.424.1-alpha-cfc2887.0 → 14.425.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 +395 -395
- package/dist/dts/react.d.ts +8 -8
- package/dist/react.cjs +661 -168
- package/dist/react.mjs +660 -167
- package/package.json +12 -15
package/dist/dts/react.d.ts
CHANGED
|
@@ -141,22 +141,22 @@ export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
|
141
141
|
> & React.RefAttributes<ActionsMenuWC>
|
|
142
142
|
>;
|
|
143
143
|
|
|
144
|
-
export declare const
|
|
144
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
145
145
|
React.PropsWithChildren<
|
|
146
|
-
Omit<PublicOf<
|
|
146
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
147
147
|
HTMLWCProps & {
|
|
148
|
-
onCriteriaChanged?: (event: CustomEvent<unknown>) => void;
|
|
149
|
-
onValidationErrors?: (event: CustomEvent<unknown>) => void;
|
|
150
148
|
}
|
|
151
|
-
> & React.RefAttributes<
|
|
149
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
152
150
|
>;
|
|
153
151
|
|
|
154
|
-
export declare const
|
|
152
|
+
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
155
153
|
React.PropsWithChildren<
|
|
156
|
-
Omit<PublicOf<
|
|
154
|
+
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
157
155
|
HTMLWCProps & {
|
|
156
|
+
onCriteriaChanged?: (event: CustomEvent<unknown>) => void;
|
|
157
|
+
onValidationErrors?: (event: CustomEvent<unknown>) => void;
|
|
158
158
|
}
|
|
159
|
-
> & React.RefAttributes<
|
|
159
|
+
> & React.RefAttributes<AiCriteriaSearchWC>
|
|
160
160
|
>;
|
|
161
161
|
|
|
162
162
|
export declare const Anchor: React.ForwardRefExoticComponent<
|