@genesislcap/foundation-ui 15.5.0 → 15.6.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 +914 -914
- package/dist/dts/react.d.ts +13 -13
- package/dist/react.cjs +9 -9
- package/dist/react.mjs +7 -7
- package/package.json +19 -19
package/dist/dts/react.d.ts
CHANGED
|
@@ -133,6 +133,15 @@ interface HTMLWCProps extends React.AriaAttributes {
|
|
|
133
133
|
onInput?(e: Event): void;
|
|
134
134
|
}
|
|
135
135
|
|
|
136
|
+
export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
137
|
+
React.PropsWithChildren<
|
|
138
|
+
Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
|
|
139
|
+
HTMLWCProps & {
|
|
140
|
+
}
|
|
141
|
+
> & React.RefAttributes<AccordionItemWC>
|
|
142
|
+
>;
|
|
143
|
+
export type AccordionItemRef = AccordionItemWC;
|
|
144
|
+
|
|
136
145
|
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
137
146
|
React.PropsWithChildren<
|
|
138
147
|
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
@@ -142,14 +151,14 @@ export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
|
142
151
|
>;
|
|
143
152
|
export type ActionsMenuRef = ActionsMenuWC;
|
|
144
153
|
|
|
145
|
-
export declare const
|
|
154
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
146
155
|
React.PropsWithChildren<
|
|
147
|
-
Omit<PublicOf<
|
|
156
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
148
157
|
HTMLWCProps & {
|
|
149
158
|
}
|
|
150
|
-
> & React.RefAttributes<
|
|
159
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
151
160
|
>;
|
|
152
|
-
export type
|
|
161
|
+
export type AiIndicatorRef = AiIndicatorWC;
|
|
153
162
|
|
|
154
163
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
155
164
|
React.PropsWithChildren<
|
|
@@ -162,15 +171,6 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
162
171
|
>;
|
|
163
172
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
164
173
|
|
|
165
|
-
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
166
|
-
React.PropsWithChildren<
|
|
167
|
-
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
168
|
-
HTMLWCProps & {
|
|
169
|
-
}
|
|
170
|
-
> & React.RefAttributes<AiIndicatorWC>
|
|
171
|
-
>;
|
|
172
|
-
export type AiIndicatorRef = AiIndicatorWC;
|
|
173
|
-
|
|
174
174
|
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
175
175
|
React.PropsWithChildren<
|
|
176
176
|
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -113,14 +113,19 @@ function _mergeRefs(...refs) {
|
|
|
113
113
|
};
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
+
const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
117
|
+
const { children, ...rest } = props;
|
|
118
|
+
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
119
|
+
});
|
|
120
|
+
|
|
116
121
|
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
117
122
|
const { children, ...rest } = props;
|
|
118
123
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
119
124
|
});
|
|
120
125
|
|
|
121
|
-
const
|
|
126
|
+
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
122
127
|
const { children, ...rest } = props;
|
|
123
|
-
return React.createElement(customElements.getName(
|
|
128
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
124
129
|
});
|
|
125
130
|
|
|
126
131
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
@@ -145,11 +150,6 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
145
150
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
146
151
|
});
|
|
147
152
|
|
|
148
|
-
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
149
|
-
const { children, ...rest } = props;
|
|
150
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
151
|
-
});
|
|
152
|
-
|
|
153
153
|
const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
154
154
|
const { children, ...rest } = props;
|
|
155
155
|
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
@@ -1143,10 +1143,10 @@ const WeeklyRecurrence = React.forwardRef(function WeeklyRecurrence(props, ref)
|
|
|
1143
1143
|
});
|
|
1144
1144
|
|
|
1145
1145
|
module.exports = {
|
|
1146
|
-
ActionsMenu,
|
|
1147
1146
|
AccordionItem,
|
|
1148
|
-
|
|
1147
|
+
ActionsMenu,
|
|
1149
1148
|
AiIndicator,
|
|
1149
|
+
AiCriteriaSearch,
|
|
1150
1150
|
Accordion,
|
|
1151
1151
|
Anchor,
|
|
1152
1152
|
AnchoredRegion,
|
package/dist/react.mjs
CHANGED
|
@@ -111,14 +111,19 @@ function _mergeRefs(...refs) {
|
|
|
111
111
|
};
|
|
112
112
|
}
|
|
113
113
|
|
|
114
|
+
export const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
115
|
+
const { children, ...rest } = props;
|
|
116
|
+
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
117
|
+
});
|
|
118
|
+
|
|
114
119
|
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
115
120
|
const { children, ...rest } = props;
|
|
116
121
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
117
122
|
});
|
|
118
123
|
|
|
119
|
-
export const
|
|
124
|
+
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
120
125
|
const { children, ...rest } = props;
|
|
121
|
-
return React.createElement(customElements.getName(
|
|
126
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
122
127
|
});
|
|
123
128
|
|
|
124
129
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
@@ -143,11 +148,6 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
143
148
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
144
149
|
});
|
|
145
150
|
|
|
146
|
-
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
147
|
-
const { children, ...rest } = props;
|
|
148
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
149
|
-
});
|
|
150
|
-
|
|
151
151
|
export const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
152
152
|
const { children, ...rest } = props;
|
|
153
153
|
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
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.
|
|
4
|
+
"version": "15.6.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": "15.
|
|
89
|
-
"@genesislcap/genx": "15.
|
|
90
|
-
"@genesislcap/rollup-builder": "15.
|
|
91
|
-
"@genesislcap/ts-builder": "15.
|
|
92
|
-
"@genesislcap/uvu-playwright-builder": "15.
|
|
93
|
-
"@genesislcap/vite-builder": "15.
|
|
94
|
-
"@genesislcap/webpack-builder": "15.
|
|
88
|
+
"@genesislcap/foundation-testing": "15.6.0",
|
|
89
|
+
"@genesislcap/genx": "15.6.0",
|
|
90
|
+
"@genesislcap/rollup-builder": "15.6.0",
|
|
91
|
+
"@genesislcap/ts-builder": "15.6.0",
|
|
92
|
+
"@genesislcap/uvu-playwright-builder": "15.6.0",
|
|
93
|
+
"@genesislcap/vite-builder": "15.6.0",
|
|
94
|
+
"@genesislcap/webpack-builder": "15.6.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": "15.
|
|
104
|
-
"@genesislcap/foundation-ai": "15.
|
|
105
|
-
"@genesislcap/foundation-comms": "15.
|
|
106
|
-
"@genesislcap/foundation-criteria": "15.
|
|
107
|
-
"@genesislcap/foundation-errors": "15.
|
|
108
|
-
"@genesislcap/foundation-events": "15.
|
|
109
|
-
"@genesislcap/foundation-logger": "15.
|
|
110
|
-
"@genesislcap/foundation-notifications": "15.
|
|
111
|
-
"@genesislcap/foundation-user": "15.
|
|
112
|
-
"@genesislcap/foundation-utils": "15.
|
|
103
|
+
"@genesislcap/expression-builder": "15.6.0",
|
|
104
|
+
"@genesislcap/foundation-ai": "15.6.0",
|
|
105
|
+
"@genesislcap/foundation-comms": "15.6.0",
|
|
106
|
+
"@genesislcap/foundation-criteria": "15.6.0",
|
|
107
|
+
"@genesislcap/foundation-errors": "15.6.0",
|
|
108
|
+
"@genesislcap/foundation-events": "15.6.0",
|
|
109
|
+
"@genesislcap/foundation-logger": "15.6.0",
|
|
110
|
+
"@genesislcap/foundation-notifications": "15.6.0",
|
|
111
|
+
"@genesislcap/foundation-user": "15.6.0",
|
|
112
|
+
"@genesislcap/foundation-utils": "15.6.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",
|
|
@@ -142,5 +142,5 @@
|
|
|
142
142
|
"require": "./dist/react.cjs"
|
|
143
143
|
}
|
|
144
144
|
},
|
|
145
|
-
"gitHead": "
|
|
145
|
+
"gitHead": "dbf070bac8a4bfc2a178e335b1faffb130e8f761"
|
|
146
146
|
}
|