@genesislcap/rapid-design-system 14.437.1 → 14.437.2
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 +376 -376
- 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,15 +138,6 @@ 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
|
-
|
|
150
141
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
151
142
|
React.PropsWithChildren<
|
|
152
143
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
@@ -158,6 +149,15 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
158
149
|
>;
|
|
159
150
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
160
151
|
|
|
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,11 +108,6 @@ 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
|
-
|
|
116
111
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
117
112
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
118
113
|
const _innerRef = React.useRef(null);
|
|
@@ -135,6 +130,11 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
135
130
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
136
131
|
});
|
|
137
132
|
|
|
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
|
-
AiIndicator,
|
|
782
781
|
AiCriteriaSearch,
|
|
782
|
+
AiIndicator,
|
|
783
783
|
Anchor,
|
|
784
784
|
AnchoredRegion,
|
|
785
785
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -106,11 +106,6 @@ 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
|
-
|
|
114
109
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
115
110
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
116
111
|
const _innerRef = React.useRef(null);
|
|
@@ -133,6 +128,11 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
133
128
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
134
129
|
});
|
|
135
130
|
|
|
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.2",
|
|
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.2",
|
|
39
|
+
"@genesislcap/rollup-builder": "14.437.2",
|
|
40
|
+
"@genesislcap/ts-builder": "14.437.2",
|
|
41
|
+
"@genesislcap/uvu-playwright-builder": "14.437.2",
|
|
42
|
+
"@genesislcap/vite-builder": "14.437.2",
|
|
43
|
+
"@genesislcap/webpack-builder": "14.437.2"
|
|
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.2",
|
|
47
|
+
"@genesislcap/foundation-ui": "14.437.2",
|
|
48
|
+
"@genesislcap/foundation-utils": "14.437.2",
|
|
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": "36f8207d71cefd6bf6506c2689a5d0afd32db082"
|
|
77
77
|
}
|