@genesislcap/foundation-ui 14.424.1 → 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 +1001 -1001
- package/dist/dts/react.d.ts +14 -14
- package/dist/react.cjs +677 -173
- package/dist/react.mjs +675 -171
- package/package.json +19 -22
package/dist/dts/react.d.ts
CHANGED
|
@@ -120,28 +120,20 @@ interface HTMLWCProps extends React.AriaAttributes {
|
|
|
120
120
|
onInput?(e: Event): void;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
-
export declare const
|
|
124
|
-
React.PropsWithChildren<
|
|
125
|
-
Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
|
|
126
|
-
HTMLWCProps & {
|
|
127
|
-
}
|
|
128
|
-
> & React.RefAttributes<AccordionItemWC>
|
|
129
|
-
>;
|
|
130
|
-
|
|
131
|
-
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
123
|
+
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
132
124
|
React.PropsWithChildren<
|
|
133
|
-
Omit<PublicOf<
|
|
125
|
+
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
134
126
|
HTMLWCProps & {
|
|
135
127
|
}
|
|
136
|
-
> & React.RefAttributes<
|
|
128
|
+
> & React.RefAttributes<ActionsMenuWC>
|
|
137
129
|
>;
|
|
138
130
|
|
|
139
|
-
export declare const
|
|
131
|
+
export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
140
132
|
React.PropsWithChildren<
|
|
141
|
-
Omit<PublicOf<
|
|
133
|
+
Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
|
|
142
134
|
HTMLWCProps & {
|
|
143
135
|
}
|
|
144
|
-
> & React.RefAttributes<
|
|
136
|
+
> & React.RefAttributes<AccordionItemWC>
|
|
145
137
|
>;
|
|
146
138
|
|
|
147
139
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
@@ -154,6 +146,14 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
154
146
|
> & React.RefAttributes<AiCriteriaSearchWC>
|
|
155
147
|
>;
|
|
156
148
|
|
|
149
|
+
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
150
|
+
React.PropsWithChildren<
|
|
151
|
+
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
152
|
+
HTMLWCProps & {
|
|
153
|
+
}
|
|
154
|
+
> & React.RefAttributes<AccordionWC>
|
|
155
|
+
>;
|
|
156
|
+
|
|
157
157
|
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
158
158
|
React.PropsWithChildren<
|
|
159
159
|
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|