@genesislcap/rapid-design-system 14.437.0 → 14.437.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 +375 -375
- 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
|
@@ -138,6 +138,15 @@ export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
|
138
138
|
>;
|
|
139
139
|
export type ActionsMenuRef = ActionsMenuWC;
|
|
140
140
|
|
|
141
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
142
|
+
React.PropsWithChildren<
|
|
143
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
144
|
+
HTMLWCProps & {
|
|
145
|
+
}
|
|
146
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
147
|
+
>;
|
|
148
|
+
export type AiIndicatorRef = AiIndicatorWC;
|
|
149
|
+
|
|
141
150
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
142
151
|
React.PropsWithChildren<
|
|
143
152
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -149,15 +158,6 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
149
158
|
>;
|
|
150
159
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
151
160
|
|
|
152
|
-
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
153
|
-
React.PropsWithChildren<
|
|
154
|
-
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
155
|
-
HTMLWCProps & {
|
|
156
|
-
}
|
|
157
|
-
> & React.RefAttributes<AiIndicatorWC>
|
|
158
|
-
>;
|
|
159
|
-
export type AiIndicatorRef = AiIndicatorWC;
|
|
160
|
-
|
|
161
161
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
162
162
|
React.PropsWithChildren<
|
|
163
163
|
Omit<PublicOf<AnchorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -108,6 +108,11 @@ const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
108
108
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
109
109
|
});
|
|
110
110
|
|
|
111
|
+
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
112
|
+
const { children, ...rest } = props;
|
|
113
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
114
|
+
});
|
|
115
|
+
|
|
111
116
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
112
117
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
113
118
|
const _innerRef = React.useRef(null);
|
|
@@ -130,11 +135,6 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
130
135
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
131
136
|
});
|
|
132
137
|
|
|
133
|
-
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
134
|
-
const { children, ...rest } = props;
|
|
135
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
136
|
-
});
|
|
137
|
-
|
|
138
138
|
const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
139
139
|
const { children, ...rest } = props;
|
|
140
140
|
return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
|
|
@@ -778,8 +778,8 @@ module.exports = {
|
|
|
778
778
|
Accordion,
|
|
779
779
|
AccordionItem,
|
|
780
780
|
ActionsMenu,
|
|
781
|
-
AiCriteriaSearch,
|
|
782
781
|
AiIndicator,
|
|
782
|
+
AiCriteriaSearch,
|
|
783
783
|
Anchor,
|
|
784
784
|
AnchoredRegion,
|
|
785
785
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -106,6 +106,11 @@ export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
106
106
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
107
107
|
});
|
|
108
108
|
|
|
109
|
+
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
110
|
+
const { children, ...rest } = props;
|
|
111
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
112
|
+
});
|
|
113
|
+
|
|
109
114
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
110
115
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
111
116
|
const _innerRef = React.useRef(null);
|
|
@@ -128,11 +133,6 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
128
133
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
129
134
|
});
|
|
130
135
|
|
|
131
|
-
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
132
|
-
const { children, ...rest } = props;
|
|
133
|
-
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
134
|
-
});
|
|
135
|
-
|
|
136
136
|
export const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
137
137
|
const { children, ...rest } = props;
|
|
138
138
|
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.437.
|
|
4
|
+
"version": "14.437.1",
|
|
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.437.
|
|
39
|
-
"@genesislcap/rollup-builder": "14.437.
|
|
40
|
-
"@genesislcap/ts-builder": "14.437.
|
|
41
|
-
"@genesislcap/uvu-playwright-builder": "14.437.
|
|
42
|
-
"@genesislcap/vite-builder": "14.437.
|
|
43
|
-
"@genesislcap/webpack-builder": "14.437.
|
|
38
|
+
"@genesislcap/genx": "14.437.1",
|
|
39
|
+
"@genesislcap/rollup-builder": "14.437.1",
|
|
40
|
+
"@genesislcap/ts-builder": "14.437.1",
|
|
41
|
+
"@genesislcap/uvu-playwright-builder": "14.437.1",
|
|
42
|
+
"@genesislcap/vite-builder": "14.437.1",
|
|
43
|
+
"@genesislcap/webpack-builder": "14.437.1"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@genesislcap/foundation-logger": "14.437.
|
|
47
|
-
"@genesislcap/foundation-ui": "14.437.
|
|
48
|
-
"@genesislcap/foundation-utils": "14.437.
|
|
46
|
+
"@genesislcap/foundation-logger": "14.437.1",
|
|
47
|
+
"@genesislcap/foundation-ui": "14.437.1",
|
|
48
|
+
"@genesislcap/foundation-utils": "14.437.1",
|
|
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": "121e8dd85e298464b0781220db72ad5190c3fb5f"
|
|
77
77
|
}
|