@genesislcap/rapid-design-system 14.467.0 → 14.467.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.
@@ -124,15 +124,6 @@ export declare const Accordion: React.ForwardRefExoticComponent<
124
124
  >;
125
125
  export type AccordionRef = AccordionWC;
126
126
 
127
- export declare const ActionsMenu: React.ForwardRefExoticComponent<
128
- React.PropsWithChildren<
129
- Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
130
- HTMLWCProps & {
131
- }
132
- > & React.RefAttributes<ActionsMenuWC>
133
- >;
134
- export type ActionsMenuRef = ActionsMenuWC;
135
-
136
127
  export declare const AccordionItem: React.ForwardRefExoticComponent<
137
128
  React.PropsWithChildren<
138
129
  Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
@@ -142,14 +133,14 @@ export declare const AccordionItem: React.ForwardRefExoticComponent<
142
133
  >;
143
134
  export type AccordionItemRef = AccordionItemWC;
144
135
 
145
- export declare const AiIndicator: React.ForwardRefExoticComponent<
136
+ export declare const ActionsMenu: React.ForwardRefExoticComponent<
146
137
  React.PropsWithChildren<
147
- Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
138
+ Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
148
139
  HTMLWCProps & {
149
140
  }
150
- > & React.RefAttributes<AiIndicatorWC>
141
+ > & React.RefAttributes<ActionsMenuWC>
151
142
  >;
152
- export type AiIndicatorRef = AiIndicatorWC;
143
+ export type ActionsMenuRef = ActionsMenuWC;
153
144
 
154
145
  export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
155
146
  React.PropsWithChildren<
@@ -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
@@ -102,19 +102,14 @@ const Accordion = React.forwardRef(function Accordion(props, ref) {
102
102
  return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
103
103
  });
104
104
 
105
- const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
106
- const { children, ...rest } = props;
107
- return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
108
- });
109
-
110
105
  const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
111
106
  const { children, ...rest } = props;
112
107
  return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
113
108
  });
114
109
 
115
- const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
110
+ const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
116
111
  const { children, ...rest } = props;
117
- return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
112
+ return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
118
113
  });
119
114
 
120
115
  const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
@@ -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);
@@ -923,10 +923,10 @@ const SystemHealthOverlay = React.forwardRef(function SystemHealthOverlay(props,
923
923
 
924
924
  module.exports = {
925
925
  Accordion,
926
- ActionsMenu,
927
926
  AccordionItem,
928
- AiIndicator,
927
+ ActionsMenu,
929
928
  AiCriteriaSearch,
929
+ AiIndicator,
930
930
  Anchor,
931
931
  AnchoredRegion,
932
932
  Avatar,
package/dist/react.mjs CHANGED
@@ -100,19 +100,14 @@ export const Accordion = React.forwardRef(function Accordion(props, ref) {
100
100
  return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
101
101
  });
102
102
 
103
- export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
104
- const { children, ...rest } = props;
105
- return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
106
- });
107
-
108
103
  export const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
109
104
  const { children, ...rest } = props;
110
105
  return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
111
106
  });
112
107
 
113
- export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
108
+ export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
114
109
  const { children, ...rest } = props;
115
- return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
110
+ return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
116
111
  });
117
112
 
118
113
  export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
@@ -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.467.0",
4
+ "version": "14.467.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.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"
38
+ "@genesislcap/genx": "14.467.1",
39
+ "@genesislcap/rollup-builder": "14.467.1",
40
+ "@genesislcap/ts-builder": "14.467.1",
41
+ "@genesislcap/uvu-playwright-builder": "14.467.1",
42
+ "@genesislcap/vite-builder": "14.467.1",
43
+ "@genesislcap/webpack-builder": "14.467.1"
44
44
  },
45
45
  "dependencies": {
46
- "@genesislcap/foundation-logger": "14.467.0",
47
- "@genesislcap/foundation-ui": "14.467.0",
48
- "@genesislcap/foundation-utils": "14.467.0",
46
+ "@genesislcap/foundation-logger": "14.467.1",
47
+ "@genesislcap/foundation-ui": "14.467.1",
48
+ "@genesislcap/foundation-utils": "14.467.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": "18901315499f3c83de01431b879ec4cfa2676507"
76
+ "gitHead": "2a9820e8efcc82074e74b760b5ec5e216a284d79"
77
77
  }