@genesislcap/rapid-design-system 14.430.0 → 14.430.1
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 +625 -625
- 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
|
@@ -119,6 +119,15 @@ export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
|
119
119
|
>;
|
|
120
120
|
export type AccordionItemRef = AccordionItemWC;
|
|
121
121
|
|
|
122
|
+
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
123
|
+
React.PropsWithChildren<
|
|
124
|
+
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
125
|
+
HTMLWCProps & {
|
|
126
|
+
}
|
|
127
|
+
> & React.RefAttributes<ActionsMenuWC>
|
|
128
|
+
>;
|
|
129
|
+
export type ActionsMenuRef = ActionsMenuWC;
|
|
130
|
+
|
|
122
131
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
123
132
|
React.PropsWithChildren<
|
|
124
133
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -139,15 +148,6 @@ export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
|
139
148
|
>;
|
|
140
149
|
export type AiIndicatorRef = AiIndicatorWC;
|
|
141
150
|
|
|
142
|
-
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
143
|
-
React.PropsWithChildren<
|
|
144
|
-
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
145
|
-
HTMLWCProps & {
|
|
146
|
-
}
|
|
147
|
-
> & React.RefAttributes<ActionsMenuWC>
|
|
148
|
-
>;
|
|
149
|
-
export type ActionsMenuRef = ActionsMenuWC;
|
|
150
|
-
|
|
151
151
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
152
152
|
React.PropsWithChildren<
|
|
153
153
|
Omit<PublicOf<AnchorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -93,6 +93,11 @@ const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
|
93
93
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
94
94
|
});
|
|
95
95
|
|
|
96
|
+
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
97
|
+
const { children, ...rest } = props;
|
|
98
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
99
|
+
});
|
|
100
|
+
|
|
96
101
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
97
102
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
98
103
|
const _innerRef = React.useRef(null);
|
|
@@ -120,11 +125,6 @@ const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
|
120
125
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
121
126
|
});
|
|
122
127
|
|
|
123
|
-
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
124
|
-
const { children, ...rest } = props;
|
|
125
|
-
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
126
|
-
});
|
|
127
|
-
|
|
128
128
|
const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
129
129
|
const { children, ...rest } = props;
|
|
130
130
|
return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
|
|
@@ -700,9 +700,9 @@ const UrlInput = React.forwardRef(function UrlInput(props, ref) {
|
|
|
700
700
|
module.exports = {
|
|
701
701
|
Accordion,
|
|
702
702
|
AccordionItem,
|
|
703
|
+
ActionsMenu,
|
|
703
704
|
AiCriteriaSearch,
|
|
704
705
|
AiIndicator,
|
|
705
|
-
ActionsMenu,
|
|
706
706
|
Anchor,
|
|
707
707
|
AnchoredRegion,
|
|
708
708
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -91,6 +91,11 @@ export const AccordionItem = React.forwardRef(function AccordionItem(props, ref)
|
|
|
91
91
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
92
92
|
});
|
|
93
93
|
|
|
94
|
+
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
95
|
+
const { children, ...rest } = props;
|
|
96
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
97
|
+
});
|
|
98
|
+
|
|
94
99
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
95
100
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
96
101
|
const _innerRef = React.useRef(null);
|
|
@@ -118,11 +123,6 @@ export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
|
118
123
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
119
124
|
});
|
|
120
125
|
|
|
121
|
-
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
122
|
-
const { children, ...rest } = props;
|
|
123
|
-
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
124
|
-
});
|
|
125
|
-
|
|
126
126
|
export const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
127
127
|
const { children, ...rest } = props;
|
|
128
128
|
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": "14.430.
|
|
4
|
+
"version": "14.430.1",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -35,17 +35,17 @@
|
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
|
|
38
|
-
"@genesislcap/genx": "14.430.
|
|
39
|
-
"@genesislcap/rollup-builder": "14.430.
|
|
40
|
-
"@genesislcap/ts-builder": "14.430.
|
|
41
|
-
"@genesislcap/uvu-playwright-builder": "14.430.
|
|
42
|
-
"@genesislcap/vite-builder": "14.430.
|
|
43
|
-
"@genesislcap/webpack-builder": "14.430.
|
|
38
|
+
"@genesislcap/genx": "14.430.1",
|
|
39
|
+
"@genesislcap/rollup-builder": "14.430.1",
|
|
40
|
+
"@genesislcap/ts-builder": "14.430.1",
|
|
41
|
+
"@genesislcap/uvu-playwright-builder": "14.430.1",
|
|
42
|
+
"@genesislcap/vite-builder": "14.430.1",
|
|
43
|
+
"@genesislcap/webpack-builder": "14.430.1"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@genesislcap/foundation-logger": "14.430.
|
|
47
|
-
"@genesislcap/foundation-ui": "14.430.
|
|
48
|
-
"@genesislcap/foundation-utils": "14.430.
|
|
46
|
+
"@genesislcap/foundation-logger": "14.430.1",
|
|
47
|
+
"@genesislcap/foundation-ui": "14.430.1",
|
|
48
|
+
"@genesislcap/foundation-utils": "14.430.1",
|
|
49
49
|
"@microsoft/fast-colors": "5.3.1",
|
|
50
50
|
"@microsoft/fast-components": "2.30.6",
|
|
51
51
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"require": "./dist/react.cjs"
|
|
74
74
|
}
|
|
75
75
|
},
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "6eb4026225087b765f5363f7233d3450af040900"
|
|
77
77
|
}
|