@genesislcap/foundation-ui 15.0.0 → 15.1.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 +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
|
@@ -141,15 +141,6 @@ export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
|
141
141
|
>;
|
|
142
142
|
export type AccordionItemRef = AccordionItemWC;
|
|
143
143
|
|
|
144
|
-
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
145
|
-
React.PropsWithChildren<
|
|
146
|
-
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
147
|
-
HTMLWCProps & {
|
|
148
|
-
}
|
|
149
|
-
> & React.RefAttributes<ActionsMenuWC>
|
|
150
|
-
>;
|
|
151
|
-
export type ActionsMenuRef = ActionsMenuWC;
|
|
152
|
-
|
|
153
144
|
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
154
145
|
React.PropsWithChildren<
|
|
155
146
|
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
@@ -159,14 +150,14 @@ export declare const Accordion: React.ForwardRefExoticComponent<
|
|
|
159
150
|
>;
|
|
160
151
|
export type AccordionRef = AccordionWC;
|
|
161
152
|
|
|
162
|
-
export declare const
|
|
153
|
+
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
163
154
|
React.PropsWithChildren<
|
|
164
|
-
Omit<PublicOf<
|
|
155
|
+
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
165
156
|
HTMLWCProps & {
|
|
166
157
|
}
|
|
167
|
-
> & React.RefAttributes<
|
|
158
|
+
> & React.RefAttributes<ActionsMenuWC>
|
|
168
159
|
>;
|
|
169
|
-
export type
|
|
160
|
+
export type ActionsMenuRef = ActionsMenuWC;
|
|
170
161
|
|
|
171
162
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
172
163
|
React.PropsWithChildren<
|
|
@@ -179,6 +170,15 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
179
170
|
>;
|
|
180
171
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
181
172
|
|
|
173
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
174
|
+
React.PropsWithChildren<
|
|
175
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
176
|
+
HTMLWCProps & {
|
|
177
|
+
}
|
|
178
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
179
|
+
>;
|
|
180
|
+
export type AiIndicatorRef = AiIndicatorWC;
|
|
181
|
+
|
|
182
182
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
183
183
|
React.PropsWithChildren<
|
|
184
184
|
Omit<PublicOf<AnchorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -117,19 +117,14 @@ const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
|
117
117
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
118
118
|
});
|
|
119
119
|
|
|
120
|
-
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
121
|
-
const { children, ...rest } = props;
|
|
122
|
-
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
123
|
-
});
|
|
124
|
-
|
|
125
120
|
const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
126
121
|
const { children, ...rest } = props;
|
|
127
122
|
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
128
123
|
});
|
|
129
124
|
|
|
130
|
-
const
|
|
125
|
+
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
131
126
|
const { children, ...rest } = props;
|
|
132
|
-
return React.createElement(customElements.getName(
|
|
127
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
133
128
|
});
|
|
134
129
|
|
|
135
130
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
@@ -154,6 +149,11 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
154
149
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
155
150
|
});
|
|
156
151
|
|
|
152
|
+
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
153
|
+
const { children, ...rest } = props;
|
|
154
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
155
|
+
});
|
|
156
|
+
|
|
157
157
|
const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
158
158
|
const { children, ...rest } = props;
|
|
159
159
|
return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
|
|
@@ -1126,10 +1126,10 @@ const WeeklyRecurrence = React.forwardRef(function WeeklyRecurrence(props, ref)
|
|
|
1126
1126
|
|
|
1127
1127
|
module.exports = {
|
|
1128
1128
|
AccordionItem,
|
|
1129
|
-
ActionsMenu,
|
|
1130
1129
|
Accordion,
|
|
1131
|
-
|
|
1130
|
+
ActionsMenu,
|
|
1132
1131
|
AiCriteriaSearch,
|
|
1132
|
+
AiIndicator,
|
|
1133
1133
|
Anchor,
|
|
1134
1134
|
AnchoredRegion,
|
|
1135
1135
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -115,19 +115,14 @@ export const AccordionItem = React.forwardRef(function AccordionItem(props, ref)
|
|
|
115
115
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
116
116
|
});
|
|
117
117
|
|
|
118
|
-
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
119
|
-
const { children, ...rest } = props;
|
|
120
|
-
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
121
|
-
});
|
|
122
|
-
|
|
123
118
|
export const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
124
119
|
const { children, ...rest } = props;
|
|
125
120
|
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
126
121
|
});
|
|
127
122
|
|
|
128
|
-
export const
|
|
123
|
+
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
129
124
|
const { children, ...rest } = props;
|
|
130
|
-
return React.createElement(customElements.getName(
|
|
125
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
131
126
|
});
|
|
132
127
|
|
|
133
128
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
@@ -152,6 +147,11 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
152
147
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
153
148
|
});
|
|
154
149
|
|
|
150
|
+
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
151
|
+
const { children, ...rest } = props;
|
|
152
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
153
|
+
});
|
|
154
|
+
|
|
155
155
|
export const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
156
156
|
const { children, ...rest } = props;
|
|
157
157
|
return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...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.1.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.1.0",
|
|
89
|
+
"@genesislcap/genx": "15.1.0",
|
|
90
|
+
"@genesislcap/rollup-builder": "15.1.0",
|
|
91
|
+
"@genesislcap/ts-builder": "15.1.0",
|
|
92
|
+
"@genesislcap/uvu-playwright-builder": "15.1.0",
|
|
93
|
+
"@genesislcap/vite-builder": "15.1.0",
|
|
94
|
+
"@genesislcap/webpack-builder": "15.1.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.1.0",
|
|
104
|
+
"@genesislcap/foundation-ai": "15.1.0",
|
|
105
|
+
"@genesislcap/foundation-comms": "15.1.0",
|
|
106
|
+
"@genesislcap/foundation-criteria": "15.1.0",
|
|
107
|
+
"@genesislcap/foundation-errors": "15.1.0",
|
|
108
|
+
"@genesislcap/foundation-events": "15.1.0",
|
|
109
|
+
"@genesislcap/foundation-logger": "15.1.0",
|
|
110
|
+
"@genesislcap/foundation-notifications": "15.1.0",
|
|
111
|
+
"@genesislcap/foundation-user": "15.1.0",
|
|
112
|
+
"@genesislcap/foundation-utils": "15.1.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": "f841e54c9b682f3cf01448a9db79d67a66b88c84"
|
|
146
146
|
}
|