@genesislcap/rapid-design-system 14.484.2 → 14.485.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 +377 -377
- 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
|
@@ -144,6 +144,15 @@ export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
|
144
144
|
>;
|
|
145
145
|
export type ActionsMenuRef = ActionsMenuWC;
|
|
146
146
|
|
|
147
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
148
|
+
React.PropsWithChildren<
|
|
149
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
150
|
+
HTMLWCProps & {
|
|
151
|
+
}
|
|
152
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
153
|
+
>;
|
|
154
|
+
export type AiIndicatorRef = AiIndicatorWC;
|
|
155
|
+
|
|
147
156
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
148
157
|
React.PropsWithChildren<
|
|
149
158
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -155,15 +164,6 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
155
164
|
>;
|
|
156
165
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
157
166
|
|
|
158
|
-
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
159
|
-
React.PropsWithChildren<
|
|
160
|
-
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
161
|
-
HTMLWCProps & {
|
|
162
|
-
}
|
|
163
|
-
> & React.RefAttributes<AiIndicatorWC>
|
|
164
|
-
>;
|
|
165
|
-
export type AiIndicatorRef = AiIndicatorWC;
|
|
166
|
-
|
|
167
167
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
168
168
|
React.PropsWithChildren<
|
|
169
169
|
Omit<PublicOf<AnchorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -112,6 +112,11 @@ const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
112
112
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
113
113
|
});
|
|
114
114
|
|
|
115
|
+
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
116
|
+
const { children, ...rest } = props;
|
|
117
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
118
|
+
});
|
|
119
|
+
|
|
115
120
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
116
121
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
117
122
|
const _innerRef = React.useRef(null);
|
|
@@ -134,11 +139,6 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
134
139
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
135
140
|
});
|
|
136
141
|
|
|
137
|
-
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
138
|
-
const { children, ...rest } = props;
|
|
139
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
140
|
-
});
|
|
141
|
-
|
|
142
142
|
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);
|
|
@@ -925,8 +925,8 @@ module.exports = {
|
|
|
925
925
|
Accordion,
|
|
926
926
|
AccordionItem,
|
|
927
927
|
ActionsMenu,
|
|
928
|
-
AiCriteriaSearch,
|
|
929
928
|
AiIndicator,
|
|
929
|
+
AiCriteriaSearch,
|
|
930
930
|
Anchor,
|
|
931
931
|
AnchoredRegion,
|
|
932
932
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -110,6 +110,11 @@ export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
110
110
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
111
111
|
});
|
|
112
112
|
|
|
113
|
+
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
114
|
+
const { children, ...rest } = props;
|
|
115
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
116
|
+
});
|
|
117
|
+
|
|
113
118
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
114
119
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
115
120
|
const _innerRef = React.useRef(null);
|
|
@@ -132,11 +137,6 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
132
137
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
133
138
|
});
|
|
134
139
|
|
|
135
|
-
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
136
|
-
const { children, ...rest } = props;
|
|
137
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
138
|
-
});
|
|
139
|
-
|
|
140
140
|
export const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
141
141
|
const { children, ...rest } = props;
|
|
142
142
|
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.485.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
|
|
39
|
-
"@genesislcap/genx": "14.
|
|
40
|
-
"@genesislcap/rollup-builder": "14.
|
|
41
|
-
"@genesislcap/ts-builder": "14.
|
|
42
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
43
|
-
"@genesislcap/vite-builder": "14.
|
|
44
|
-
"@genesislcap/webpack-builder": "14.
|
|
39
|
+
"@genesislcap/genx": "14.485.0",
|
|
40
|
+
"@genesislcap/rollup-builder": "14.485.0",
|
|
41
|
+
"@genesislcap/ts-builder": "14.485.0",
|
|
42
|
+
"@genesislcap/uvu-playwright-builder": "14.485.0",
|
|
43
|
+
"@genesislcap/vite-builder": "14.485.0",
|
|
44
|
+
"@genesislcap/webpack-builder": "14.485.0",
|
|
45
45
|
"flexlayout-react": "^0.8.19"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
}
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@genesislcap/foundation-logger": "14.
|
|
57
|
-
"@genesislcap/foundation-ui": "14.
|
|
58
|
-
"@genesislcap/foundation-utils": "14.
|
|
56
|
+
"@genesislcap/foundation-logger": "14.485.0",
|
|
57
|
+
"@genesislcap/foundation-ui": "14.485.0",
|
|
58
|
+
"@genesislcap/foundation-utils": "14.485.0",
|
|
59
59
|
"@microsoft/fast-colors": "5.3.1",
|
|
60
60
|
"@microsoft/fast-components": "2.30.6",
|
|
61
61
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"require": "./dist/react.cjs"
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "6d8eacc0597e7a9a323fa3838c493e7ac8ddc589"
|
|
87
87
|
}
|