@genesislcap/rapid-design-system 15.3.4 → 15.4.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 +12 -12
package/dist/dts/react.d.ts
CHANGED
|
@@ -146,6 +146,15 @@ export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
|
146
146
|
>;
|
|
147
147
|
export type ActionsMenuRef = ActionsMenuWC;
|
|
148
148
|
|
|
149
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
150
|
+
React.PropsWithChildren<
|
|
151
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
152
|
+
HTMLWCProps & {
|
|
153
|
+
}
|
|
154
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
155
|
+
>;
|
|
156
|
+
export type AiIndicatorRef = AiIndicatorWC;
|
|
157
|
+
|
|
149
158
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
150
159
|
React.PropsWithChildren<
|
|
151
160
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -157,15 +166,6 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
157
166
|
>;
|
|
158
167
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
159
168
|
|
|
160
|
-
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
161
|
-
React.PropsWithChildren<
|
|
162
|
-
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
163
|
-
HTMLWCProps & {
|
|
164
|
-
}
|
|
165
|
-
> & React.RefAttributes<AiIndicatorWC>
|
|
166
|
-
>;
|
|
167
|
-
export type AiIndicatorRef = AiIndicatorWC;
|
|
168
|
-
|
|
169
169
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
170
170
|
React.PropsWithChildren<
|
|
171
171
|
Omit<PublicOf<AnchorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -114,6 +114,11 @@ const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
114
114
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
115
115
|
});
|
|
116
116
|
|
|
117
|
+
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
118
|
+
const { children, ...rest } = props;
|
|
119
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
120
|
+
});
|
|
121
|
+
|
|
117
122
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
118
123
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
119
124
|
const _innerRef = React.useRef(null);
|
|
@@ -136,11 +141,6 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
136
141
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
137
142
|
});
|
|
138
143
|
|
|
139
|
-
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
140
|
-
const { children, ...rest } = props;
|
|
141
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...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);
|
|
@@ -1002,8 +1002,8 @@ module.exports = {
|
|
|
1002
1002
|
Accordion,
|
|
1003
1003
|
AccordionItem,
|
|
1004
1004
|
ActionsMenu,
|
|
1005
|
-
AiCriteriaSearch,
|
|
1006
1005
|
AiIndicator,
|
|
1006
|
+
AiCriteriaSearch,
|
|
1007
1007
|
Anchor,
|
|
1008
1008
|
AnchoredRegion,
|
|
1009
1009
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -112,6 +112,11 @@ export 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
|
+
export 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
|
export 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 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
134
139
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
135
140
|
});
|
|
136
141
|
|
|
137
|
-
export 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
|
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.
|
|
4
|
+
"version": "15.4.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
|
|
41
|
-
"@genesislcap/foundation-testing": "15.
|
|
42
|
-
"@genesislcap/genx": "15.
|
|
43
|
-
"@genesislcap/rollup-builder": "15.
|
|
44
|
-
"@genesislcap/ts-builder": "15.
|
|
45
|
-
"@genesislcap/uvu-playwright-builder": "15.
|
|
46
|
-
"@genesislcap/vite-builder": "15.
|
|
47
|
-
"@genesislcap/webpack-builder": "15.
|
|
41
|
+
"@genesislcap/foundation-testing": "15.4.0",
|
|
42
|
+
"@genesislcap/genx": "15.4.0",
|
|
43
|
+
"@genesislcap/rollup-builder": "15.4.0",
|
|
44
|
+
"@genesislcap/ts-builder": "15.4.0",
|
|
45
|
+
"@genesislcap/uvu-playwright-builder": "15.4.0",
|
|
46
|
+
"@genesislcap/vite-builder": "15.4.0",
|
|
47
|
+
"@genesislcap/webpack-builder": "15.4.0",
|
|
48
48
|
"flexlayout-react": "^0.8.19"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@genesislcap/foundation-logger": "15.
|
|
60
|
-
"@genesislcap/foundation-ui": "15.
|
|
61
|
-
"@genesislcap/foundation-utils": "15.
|
|
59
|
+
"@genesislcap/foundation-logger": "15.4.0",
|
|
60
|
+
"@genesislcap/foundation-ui": "15.4.0",
|
|
61
|
+
"@genesislcap/foundation-utils": "15.4.0",
|
|
62
62
|
"@microsoft/fast-colors": "5.3.1",
|
|
63
63
|
"@microsoft/fast-components": "2.30.6",
|
|
64
64
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"require": "./dist/react.cjs"
|
|
87
87
|
}
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "2c61100a9805e799c8047a26ad6a147d1ac1af87"
|
|
90
90
|
}
|