@genesislcap/rapid-design-system 14.472.0 → 14.472.1-alpha-eaaf4d2.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
|
@@ -142,6 +142,15 @@ export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
|
142
142
|
>;
|
|
143
143
|
export type ActionsMenuRef = ActionsMenuWC;
|
|
144
144
|
|
|
145
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
146
|
+
React.PropsWithChildren<
|
|
147
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
148
|
+
HTMLWCProps & {
|
|
149
|
+
}
|
|
150
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
151
|
+
>;
|
|
152
|
+
export type AiIndicatorRef = AiIndicatorWC;
|
|
153
|
+
|
|
145
154
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
146
155
|
React.PropsWithChildren<
|
|
147
156
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -153,15 +162,6 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
153
162
|
>;
|
|
154
163
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
155
164
|
|
|
156
|
-
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
157
|
-
React.PropsWithChildren<
|
|
158
|
-
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
159
|
-
HTMLWCProps & {
|
|
160
|
-
}
|
|
161
|
-
> & React.RefAttributes<AiIndicatorWC>
|
|
162
|
-
>;
|
|
163
|
-
export type AiIndicatorRef = AiIndicatorWC;
|
|
164
|
-
|
|
165
165
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
166
166
|
React.PropsWithChildren<
|
|
167
167
|
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.472.0",
|
|
4
|
+
"version": "14.472.1-alpha-eaaf4d2.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.472.0",
|
|
40
|
-
"@genesislcap/rollup-builder": "14.472.0",
|
|
41
|
-
"@genesislcap/ts-builder": "14.472.0",
|
|
42
|
-
"@genesislcap/uvu-playwright-builder": "14.472.0",
|
|
43
|
-
"@genesislcap/vite-builder": "14.472.0",
|
|
44
|
-
"@genesislcap/webpack-builder": "14.472.0",
|
|
39
|
+
"@genesislcap/genx": "14.472.1-alpha-eaaf4d2.0",
|
|
40
|
+
"@genesislcap/rollup-builder": "14.472.1-alpha-eaaf4d2.0",
|
|
41
|
+
"@genesislcap/ts-builder": "14.472.1-alpha-eaaf4d2.0",
|
|
42
|
+
"@genesislcap/uvu-playwright-builder": "14.472.1-alpha-eaaf4d2.0",
|
|
43
|
+
"@genesislcap/vite-builder": "14.472.1-alpha-eaaf4d2.0",
|
|
44
|
+
"@genesislcap/webpack-builder": "14.472.1-alpha-eaaf4d2.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.472.0",
|
|
57
|
-
"@genesislcap/foundation-ui": "14.472.0",
|
|
58
|
-
"@genesislcap/foundation-utils": "14.472.0",
|
|
56
|
+
"@genesislcap/foundation-logger": "14.472.1-alpha-eaaf4d2.0",
|
|
57
|
+
"@genesislcap/foundation-ui": "14.472.1-alpha-eaaf4d2.0",
|
|
58
|
+
"@genesislcap/foundation-utils": "14.472.1-alpha-eaaf4d2.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": "521276525d10e05f150eef931f0b4da5363b9a19"
|
|
87
87
|
}
|