@genesislcap/rapid-design-system 14.429.2 → 14.430.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 +624 -624
- 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,15 +119,6 @@ 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
|
-
|
|
131
122
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
132
123
|
React.PropsWithChildren<
|
|
133
124
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -148,6 +139,15 @@ export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
|
148
139
|
>;
|
|
149
140
|
export type AiIndicatorRef = AiIndicatorWC;
|
|
150
141
|
|
|
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,11 +93,6 @@ 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
|
-
|
|
101
96
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
102
97
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
103
98
|
const _innerRef = React.useRef(null);
|
|
@@ -125,6 +120,11 @@ const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
|
125
120
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
126
121
|
});
|
|
127
122
|
|
|
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,
|
|
704
703
|
AiCriteriaSearch,
|
|
705
704
|
AiIndicator,
|
|
705
|
+
ActionsMenu,
|
|
706
706
|
Anchor,
|
|
707
707
|
AnchoredRegion,
|
|
708
708
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -91,11 +91,6 @@ 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
|
-
|
|
99
94
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
100
95
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
101
96
|
const _innerRef = React.useRef(null);
|
|
@@ -123,6 +118,11 @@ export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
|
123
118
|
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
124
119
|
});
|
|
125
120
|
|
|
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.
|
|
4
|
+
"version": "14.430.0",
|
|
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.
|
|
39
|
-
"@genesislcap/rollup-builder": "14.
|
|
40
|
-
"@genesislcap/ts-builder": "14.
|
|
41
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
42
|
-
"@genesislcap/vite-builder": "14.
|
|
43
|
-
"@genesislcap/webpack-builder": "14.
|
|
38
|
+
"@genesislcap/genx": "14.430.0",
|
|
39
|
+
"@genesislcap/rollup-builder": "14.430.0",
|
|
40
|
+
"@genesislcap/ts-builder": "14.430.0",
|
|
41
|
+
"@genesislcap/uvu-playwright-builder": "14.430.0",
|
|
42
|
+
"@genesislcap/vite-builder": "14.430.0",
|
|
43
|
+
"@genesislcap/webpack-builder": "14.430.0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@genesislcap/foundation-logger": "14.
|
|
47
|
-
"@genesislcap/foundation-ui": "14.
|
|
48
|
-
"@genesislcap/foundation-utils": "14.
|
|
46
|
+
"@genesislcap/foundation-logger": "14.430.0",
|
|
47
|
+
"@genesislcap/foundation-ui": "14.430.0",
|
|
48
|
+
"@genesislcap/foundation-utils": "14.430.0",
|
|
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": "cd88c05bb6e4995f0a1ca4102345d3cb73d94c6c"
|
|
77
77
|
}
|