@genesislcap/rapid-design-system 14.472.1-alpha-eaaf4d2.0 → 14.472.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 +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,15 +142,6 @@ 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
|
-
|
|
154
145
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
155
146
|
React.PropsWithChildren<
|
|
156
147
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -162,6 +153,15 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
162
153
|
>;
|
|
163
154
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
164
155
|
|
|
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,11 +112,6 @@ 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
|
-
|
|
120
115
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
121
116
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
122
117
|
const _innerRef = React.useRef(null);
|
|
@@ -139,6 +134,11 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
139
134
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
140
135
|
});
|
|
141
136
|
|
|
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
|
-
AiIndicator,
|
|
929
928
|
AiCriteriaSearch,
|
|
929
|
+
AiIndicator,
|
|
930
930
|
Anchor,
|
|
931
931
|
AnchoredRegion,
|
|
932
932
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -110,11 +110,6 @@ 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
|
-
|
|
118
113
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
119
114
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
120
115
|
const _innerRef = React.useRef(null);
|
|
@@ -137,6 +132,11 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
137
132
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
138
133
|
});
|
|
139
134
|
|
|
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.1
|
|
4
|
+
"version": "14.472.1",
|
|
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.1
|
|
40
|
-
"@genesislcap/rollup-builder": "14.472.1
|
|
41
|
-
"@genesislcap/ts-builder": "14.472.1
|
|
42
|
-
"@genesislcap/uvu-playwright-builder": "14.472.1
|
|
43
|
-
"@genesislcap/vite-builder": "14.472.1
|
|
44
|
-
"@genesislcap/webpack-builder": "14.472.1
|
|
39
|
+
"@genesislcap/genx": "14.472.1",
|
|
40
|
+
"@genesislcap/rollup-builder": "14.472.1",
|
|
41
|
+
"@genesislcap/ts-builder": "14.472.1",
|
|
42
|
+
"@genesislcap/uvu-playwright-builder": "14.472.1",
|
|
43
|
+
"@genesislcap/vite-builder": "14.472.1",
|
|
44
|
+
"@genesislcap/webpack-builder": "14.472.1",
|
|
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.1
|
|
57
|
-
"@genesislcap/foundation-ui": "14.472.1
|
|
58
|
-
"@genesislcap/foundation-utils": "14.472.1
|
|
56
|
+
"@genesislcap/foundation-logger": "14.472.1",
|
|
57
|
+
"@genesislcap/foundation-ui": "14.472.1",
|
|
58
|
+
"@genesislcap/foundation-utils": "14.472.1",
|
|
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": "552eb1292e66bba5b3f27f2b0fbd6cbe62c20772"
|
|
87
87
|
}
|