@genesislcap/rapid-design-system 14.427.1-TAM-8.26-patch.1 → 14.427.1-TAM.8.26-patch.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 +418 -418
- package/dist/dts/react.d.ts +17 -17
- package/dist/react.cjs +11 -11
- package/dist/react.mjs +9 -9
- package/package.json +11 -11
package/dist/dts/react.d.ts
CHANGED
|
@@ -101,15 +101,6 @@ interface HTMLWCProps extends React.AriaAttributes {
|
|
|
101
101
|
onInput?(e: Event): void;
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
105
|
-
React.PropsWithChildren<
|
|
106
|
-
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
107
|
-
HTMLWCProps & {
|
|
108
|
-
}
|
|
109
|
-
> & React.RefAttributes<AccordionWC>
|
|
110
|
-
>;
|
|
111
|
-
export type AccordionRef = AccordionWC;
|
|
112
|
-
|
|
113
104
|
export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
114
105
|
React.PropsWithChildren<
|
|
115
106
|
Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
|
|
@@ -119,23 +110,23 @@ export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
|
119
110
|
>;
|
|
120
111
|
export type AccordionItemRef = AccordionItemWC;
|
|
121
112
|
|
|
122
|
-
export declare const
|
|
113
|
+
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
123
114
|
React.PropsWithChildren<
|
|
124
|
-
Omit<PublicOf<
|
|
115
|
+
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
125
116
|
HTMLWCProps & {
|
|
126
117
|
}
|
|
127
|
-
> & React.RefAttributes<
|
|
118
|
+
> & React.RefAttributes<AccordionWC>
|
|
128
119
|
>;
|
|
129
|
-
export type
|
|
120
|
+
export type AccordionRef = AccordionWC;
|
|
130
121
|
|
|
131
|
-
export declare const
|
|
122
|
+
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
132
123
|
React.PropsWithChildren<
|
|
133
|
-
Omit<PublicOf<
|
|
124
|
+
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
134
125
|
HTMLWCProps & {
|
|
135
126
|
}
|
|
136
|
-
> & React.RefAttributes<
|
|
127
|
+
> & React.RefAttributes<ActionsMenuWC>
|
|
137
128
|
>;
|
|
138
|
-
export type
|
|
129
|
+
export type ActionsMenuRef = ActionsMenuWC;
|
|
139
130
|
|
|
140
131
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
141
132
|
React.PropsWithChildren<
|
|
@@ -148,6 +139,15 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
148
139
|
>;
|
|
149
140
|
export type AiCriteriaSearchRef = AiCriteriaSearchWC;
|
|
150
141
|
|
|
142
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
143
|
+
React.PropsWithChildren<
|
|
144
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
145
|
+
HTMLWCProps & {
|
|
146
|
+
}
|
|
147
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
148
|
+
>;
|
|
149
|
+
export type AiIndicatorRef = AiIndicatorWC;
|
|
150
|
+
|
|
151
151
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
|
152
152
|
React.PropsWithChildren<
|
|
153
153
|
Omit<PublicOf<AnchorWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -83,24 +83,19 @@ function _mergeRefs(...refs) {
|
|
|
83
83
|
};
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
87
|
-
const { children, ...rest } = props;
|
|
88
|
-
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
89
|
-
});
|
|
90
|
-
|
|
91
86
|
const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
92
87
|
const { children, ...rest } = props;
|
|
93
88
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
94
89
|
});
|
|
95
90
|
|
|
96
|
-
const
|
|
91
|
+
const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
97
92
|
const { children, ...rest } = props;
|
|
98
|
-
return React.createElement(customElements.getName(
|
|
93
|
+
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
99
94
|
});
|
|
100
95
|
|
|
101
|
-
const
|
|
96
|
+
const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
102
97
|
const { children, ...rest } = props;
|
|
103
|
-
return React.createElement(customElements.getName(
|
|
98
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
104
99
|
});
|
|
105
100
|
|
|
106
101
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
@@ -125,6 +120,11 @@ const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref)
|
|
|
125
120
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
126
121
|
});
|
|
127
122
|
|
|
123
|
+
const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
124
|
+
const { children, ...rest } = props;
|
|
125
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
126
|
+
});
|
|
127
|
+
|
|
128
128
|
const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
129
129
|
const { children, ...rest } = props;
|
|
130
130
|
return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
|
|
@@ -698,11 +698,11 @@ const UrlInput = React.forwardRef(function UrlInput(props, ref) {
|
|
|
698
698
|
});
|
|
699
699
|
|
|
700
700
|
module.exports = {
|
|
701
|
-
Accordion,
|
|
702
701
|
AccordionItem,
|
|
702
|
+
Accordion,
|
|
703
703
|
ActionsMenu,
|
|
704
|
-
AiIndicator,
|
|
705
704
|
AiCriteriaSearch,
|
|
705
|
+
AiIndicator,
|
|
706
706
|
Anchor,
|
|
707
707
|
AnchoredRegion,
|
|
708
708
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -81,24 +81,19 @@ function _mergeRefs(...refs) {
|
|
|
81
81
|
};
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
export const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
85
|
-
const { children, ...rest } = props;
|
|
86
|
-
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
87
|
-
});
|
|
88
|
-
|
|
89
84
|
export const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
90
85
|
const { children, ...rest } = props;
|
|
91
86
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-accordion-item', { ...rest, ref }, children);
|
|
92
87
|
});
|
|
93
88
|
|
|
94
|
-
export const
|
|
89
|
+
export const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
95
90
|
const { children, ...rest } = props;
|
|
96
|
-
return React.createElement(customElements.getName(
|
|
91
|
+
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-accordion', { ...rest, ref }, children);
|
|
97
92
|
});
|
|
98
93
|
|
|
99
|
-
export const
|
|
94
|
+
export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
100
95
|
const { children, ...rest } = props;
|
|
101
|
-
return React.createElement(customElements.getName(
|
|
96
|
+
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
102
97
|
});
|
|
103
98
|
|
|
104
99
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
@@ -123,6 +118,11 @@ export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props
|
|
|
123
118
|
return React.createElement(customElements.getName(AiCriteriaSearchWC) ?? '%%prefix%%-ai-criteria-search', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
124
119
|
});
|
|
125
120
|
|
|
121
|
+
export const AiIndicator = React.forwardRef(function AiIndicator(props, ref) {
|
|
122
|
+
const { children, ...rest } = props;
|
|
123
|
+
return React.createElement(customElements.getName(AiIndicatorWC) ?? '%%prefix%%-ai-indicator', { ...rest, ref }, children);
|
|
124
|
+
});
|
|
125
|
+
|
|
126
126
|
export const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
127
127
|
const { children, ...rest } = props;
|
|
128
128
|
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.427.1-TAM
|
|
4
|
+
"version": "14.427.1-TAM.8.26-patch.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.427.1-TAM
|
|
39
|
-
"@genesislcap/rollup-builder": "14.427.1-TAM
|
|
40
|
-
"@genesislcap/ts-builder": "14.427.1-TAM
|
|
41
|
-
"@genesislcap/uvu-playwright-builder": "14.427.1-TAM
|
|
42
|
-
"@genesislcap/vite-builder": "14.427.1-TAM
|
|
43
|
-
"@genesislcap/webpack-builder": "14.427.1-TAM
|
|
38
|
+
"@genesislcap/genx": "14.427.1-TAM.8.26-patch.2",
|
|
39
|
+
"@genesislcap/rollup-builder": "14.427.1-TAM.8.26-patch.2",
|
|
40
|
+
"@genesislcap/ts-builder": "14.427.1-TAM.8.26-patch.2",
|
|
41
|
+
"@genesislcap/uvu-playwright-builder": "14.427.1-TAM.8.26-patch.2",
|
|
42
|
+
"@genesislcap/vite-builder": "14.427.1-TAM.8.26-patch.2",
|
|
43
|
+
"@genesislcap/webpack-builder": "14.427.1-TAM.8.26-patch.2"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@genesislcap/foundation-logger": "14.427.1-TAM
|
|
47
|
-
"@genesislcap/foundation-ui": "14.427.1-TAM
|
|
48
|
-
"@genesislcap/foundation-utils": "14.427.1-TAM
|
|
46
|
+
"@genesislcap/foundation-logger": "14.427.1-TAM.8.26-patch.2",
|
|
47
|
+
"@genesislcap/foundation-ui": "14.427.1-TAM.8.26-patch.2",
|
|
48
|
+
"@genesislcap/foundation-utils": "14.427.1-TAM.8.26-patch.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": "ae3baedb34d945eeeeeb0e83d2911897e05da0bc"
|
|
77
77
|
}
|