@genesislcap/rapid-design-system 15.30.0 → 15.30.2
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 +617 -617
- package/dist/dts/react.d.ts +9 -9
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +5 -5
- package/package.json +11 -11
package/dist/dts/react.d.ts
CHANGED
|
@@ -138,6 +138,15 @@ export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
|
138
138
|
>;
|
|
139
139
|
export type AccordionItemRef = AccordionItemWC;
|
|
140
140
|
|
|
141
|
+
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
142
|
+
React.PropsWithChildren<
|
|
143
|
+
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
144
|
+
HTMLWCProps & {
|
|
145
|
+
}
|
|
146
|
+
> & React.RefAttributes<ActionsMenuWC>
|
|
147
|
+
>;
|
|
148
|
+
export type ActionsMenuRef = ActionsMenuWC;
|
|
149
|
+
|
|
141
150
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
142
151
|
React.PropsWithChildren<
|
|
143
152
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -158,15 +167,6 @@ export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
|
158
167
|
>;
|
|
159
168
|
export type AiIndicatorRef = AiIndicatorWC;
|
|
160
169
|
|
|
161
|
-
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
162
|
-
React.PropsWithChildren<
|
|
163
|
-
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
164
|
-
HTMLWCProps & {
|
|
165
|
-
}
|
|
166
|
-
> & React.RefAttributes<ActionsMenuWC>
|
|
167
|
-
>;
|
|
168
|
-
export type ActionsMenuRef = ActionsMenuWC;
|
|
169
|
-
|
|
170
170
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
171
171
|
React.PropsWithChildren<
|
|
172
172
|
Omit<PublicOf<AnchorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -109,6 +109,11 @@ const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
|
109
109
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
110
110
|
});
|
|
111
111
|
|
|
112
|
+
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
113
|
+
const { children, ...rest } = props;
|
|
114
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
115
|
+
});
|
|
116
|
+
|
|
112
117
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
113
118
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
114
119
|
const _innerRef = React.useRef(null);
|
|
@@ -136,11 +141,6 @@ const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
|
136
141
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
137
142
|
});
|
|
138
143
|
|
|
139
|
-
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
140
|
-
const { children, ...rest } = props;
|
|
141
|
-
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
142
|
-
});
|
|
143
|
-
|
|
144
144
|
const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
145
145
|
const { children, ...rest } = props;
|
|
146
146
|
return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
|
|
@@ -1001,9 +1001,9 @@ const SystemHealthOverlay = React.forwardRef(function SystemHealthOverlay(props,
|
|
|
1001
1001
|
module.exports = {
|
|
1002
1002
|
Accordion,
|
|
1003
1003
|
AccordionItem,
|
|
1004
|
+
ActionsMenu,
|
|
1004
1005
|
AiCriteriaSearch,
|
|
1005
1006
|
AiIndicator,
|
|
1006
|
-
ActionsMenu,
|
|
1007
1007
|
Anchor,
|
|
1008
1008
|
AnchoredRegion,
|
|
1009
1009
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -107,6 +107,11 @@ export const AccordionItem = React.forwardRef(function AccordionItem(props, ref)
|
|
|
107
107
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
108
108
|
});
|
|
109
109
|
|
|
110
|
+
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
111
|
+
const { children, ...rest } = props;
|
|
112
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
113
|
+
});
|
|
114
|
+
|
|
110
115
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
111
116
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
112
117
|
const _innerRef = React.useRef(null);
|
|
@@ -134,11 +139,6 @@ export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
|
134
139
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
135
140
|
});
|
|
136
141
|
|
|
137
|
-
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
138
|
-
const { children, ...rest } = props;
|
|
139
|
-
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
140
|
-
});
|
|
141
|
-
|
|
142
142
|
export const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
143
143
|
const { children, ...rest } = props;
|
|
144
144
|
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/rapid-design-system",
|
|
3
3
|
"description": "Rapid Design System",
|
|
4
|
-
"version": "15.30.
|
|
4
|
+
"version": "15.30.2",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
|
|
43
|
-
"@genesislcap/foundation-testing": "15.30.
|
|
44
|
-
"@genesislcap/genx": "15.30.
|
|
45
|
-
"@genesislcap/rollup-builder": "15.30.
|
|
46
|
-
"@genesislcap/ts-builder": "15.30.
|
|
47
|
-
"@genesislcap/uvu-playwright-builder": "15.30.
|
|
48
|
-
"@genesislcap/vite-builder": "15.30.
|
|
49
|
-
"@genesislcap/webpack-builder": "15.30.
|
|
43
|
+
"@genesislcap/foundation-testing": "15.30.2",
|
|
44
|
+
"@genesislcap/genx": "15.30.2",
|
|
45
|
+
"@genesislcap/rollup-builder": "15.30.2",
|
|
46
|
+
"@genesislcap/ts-builder": "15.30.2",
|
|
47
|
+
"@genesislcap/uvu-playwright-builder": "15.30.2",
|
|
48
|
+
"@genesislcap/vite-builder": "15.30.2",
|
|
49
|
+
"@genesislcap/webpack-builder": "15.30.2",
|
|
50
50
|
"flexlayout-react": "0.10.8"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
@@ -58,9 +58,9 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@genesislcap/foundation-logger": "15.30.
|
|
62
|
-
"@genesislcap/foundation-ui": "15.30.
|
|
63
|
-
"@genesislcap/foundation-utils": "15.30.
|
|
61
|
+
"@genesislcap/foundation-logger": "15.30.2",
|
|
62
|
+
"@genesislcap/foundation-ui": "15.30.2",
|
|
63
|
+
"@genesislcap/foundation-utils": "15.30.2",
|
|
64
64
|
"@microsoft/fast-colors": "5.3.1",
|
|
65
65
|
"@microsoft/fast-components": "2.30.6",
|
|
66
66
|
"@microsoft/fast-element": "1.14.0",
|