@genesislcap/rapid-design-system 14.466.0 → 14.467.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 +511 -511
- package/dist/dts/react.d.ts +15 -15
- package/dist/react.cjs +12 -12
- package/dist/react.mjs +10 -10
- package/package.json +11 -11
package/dist/dts/react.d.ts
CHANGED
|
@@ -115,15 +115,6 @@ interface HTMLWCProps extends React.AriaAttributes {
|
|
|
115
115
|
onInput?(e: Event): void;
|
|
116
116
|
}
|
|
117
117
|
|
|
118
|
-
export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
119
|
-
React.PropsWithChildren<
|
|
120
|
-
Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
|
|
121
|
-
HTMLWCProps & {
|
|
122
|
-
}
|
|
123
|
-
> & React.RefAttributes<AccordionItemWC>
|
|
124
|
-
>;
|
|
125
|
-
export type AccordionItemRef = AccordionItemWC;
|
|
126
|
-
|
|
127
118
|
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
128
119
|
React.PropsWithChildren<
|
|
129
120
|
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
@@ -142,16 +133,14 @@ export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
|
142
133
|
>;
|
|
143
134
|
export type ActionsMenuRef = ActionsMenuWC;
|
|
144
135
|
|
|
145
|
-
export declare const
|
|
136
|
+
export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
146
137
|
React.PropsWithChildren<
|
|
147
|
-
Omit<PublicOf<
|
|
138
|
+
Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
|
|
148
139
|
HTMLWCProps & {
|
|
149
|
-
onCriteriaChanged?: (event: CustomEvent<unknown>) => void;
|
|
150
|
-
onValidationErrors?: (event: CustomEvent<unknown>) => void;
|
|
151
140
|
}
|
|
152
|
-
> & React.RefAttributes<
|
|
141
|
+
> & React.RefAttributes<AccordionItemWC>
|
|
153
142
|
>;
|
|
154
|
-
export type
|
|
143
|
+
export type AccordionItemRef = AccordionItemWC;
|
|
155
144
|
|
|
156
145
|
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
157
146
|
React.PropsWithChildren<
|
|
@@ -162,6 +151,17 @@ export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
|
162
151
|
>;
|
|
163
152
|
export type AiIndicatorRef = AiIndicatorWC;
|
|
164
153
|
|
|
154
|
+
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
155
|
+
React.PropsWithChildren<
|
|
156
|
+
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
|
157
|
+
HTMLWCProps & {
|
|
158
|
+
onCriteriaChanged?: (event: CustomEvent<unknown>) => void;
|
|
159
|
+
onValidationErrors?: (event: CustomEvent<unknown>) => void;
|
|
160
|
+
}
|
|
161
|
+
> & React.RefAttributes<AiCriteriaSearchWC>
|
|
162
|
+
>;
|
|
163
|
+
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
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
|
@@ -97,11 +97,6 @@ function _mergeRefs(...refs) {
|
|
|
97
97
|
};
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
101
|
-
const { children, ...rest } = props;
|
|
102
|
-
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
103
|
-
});
|
|
104
|
-
|
|
105
100
|
const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
106
101
|
const { children, ...rest } = props;
|
|
107
102
|
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
@@ -112,6 +107,16 @@ const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
112
107
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
113
108
|
});
|
|
114
109
|
|
|
110
|
+
const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
111
|
+
const { children, ...rest } = props;
|
|
112
|
+
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
113
|
+
});
|
|
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);
|
|
@@ -922,11 +922,11 @@ const SystemHealthOverlay = React.forwardRef(function SystemHealthOverlay(props,
|
|
|
922
922
|
});
|
|
923
923
|
|
|
924
924
|
module.exports = {
|
|
925
|
-
AccordionItem,
|
|
926
925
|
Accordion,
|
|
927
926
|
ActionsMenu,
|
|
928
|
-
|
|
927
|
+
AccordionItem,
|
|
929
928
|
AiIndicator,
|
|
929
|
+
AiCriteriaSearch,
|
|
930
930
|
Anchor,
|
|
931
931
|
AnchoredRegion,
|
|
932
932
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -95,11 +95,6 @@ function _mergeRefs(...refs) {
|
|
|
95
95
|
};
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
export const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
99
|
-
const { children, ...rest } = props;
|
|
100
|
-
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
101
|
-
});
|
|
102
|
-
|
|
103
98
|
export const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
104
99
|
const { children, ...rest } = props;
|
|
105
100
|
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
@@ -110,6 +105,16 @@ export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
110
105
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
111
106
|
});
|
|
112
107
|
|
|
108
|
+
export const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
109
|
+
const { children, ...rest } = props;
|
|
110
|
+
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
111
|
+
});
|
|
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.
|
|
4
|
+
"version": "14.467.0",
|
|
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.
|
|
39
|
-
"@genesislcap/rollup-builder": "14.
|
|
40
|
-
"@genesislcap/ts-builder": "14.
|
|
41
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
42
|
-
"@genesislcap/vite-builder": "14.
|
|
43
|
-
"@genesislcap/webpack-builder": "14.
|
|
38
|
+
"@genesislcap/genx": "14.467.0",
|
|
39
|
+
"@genesislcap/rollup-builder": "14.467.0",
|
|
40
|
+
"@genesislcap/ts-builder": "14.467.0",
|
|
41
|
+
"@genesislcap/uvu-playwright-builder": "14.467.0",
|
|
42
|
+
"@genesislcap/vite-builder": "14.467.0",
|
|
43
|
+
"@genesislcap/webpack-builder": "14.467.0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@genesislcap/foundation-logger": "14.
|
|
47
|
-
"@genesislcap/foundation-ui": "14.
|
|
48
|
-
"@genesislcap/foundation-utils": "14.
|
|
46
|
+
"@genesislcap/foundation-logger": "14.467.0",
|
|
47
|
+
"@genesislcap/foundation-ui": "14.467.0",
|
|
48
|
+
"@genesislcap/foundation-utils": "14.467.0",
|
|
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": "18901315499f3c83de01431b879ec4cfa2676507"
|
|
77
77
|
}
|