@genesislcap/rapid-design-system 14.461.0 → 14.461.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 +668 -668
- 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
|
@@ -171,15 +171,6 @@ export declare const Anchor: React.ForwardRefExoticComponent<
|
|
|
171
171
|
>;
|
|
172
172
|
export type AnchorRef = AnchorWC;
|
|
173
173
|
|
|
174
|
-
export declare const Avatar: React.ForwardRefExoticComponent<
|
|
175
|
-
React.PropsWithChildren<
|
|
176
|
-
Omit<PublicOf<AvatarWC>, 'children' | 'style'> &
|
|
177
|
-
HTMLWCProps & {
|
|
178
|
-
}
|
|
179
|
-
> & React.RefAttributes<AvatarWC>
|
|
180
|
-
>;
|
|
181
|
-
export type AvatarRef = AvatarWC;
|
|
182
|
-
|
|
183
174
|
export declare const AnchoredRegion: React.ForwardRefExoticComponent<
|
|
184
175
|
React.PropsWithChildren<
|
|
185
176
|
Omit<PublicOf<AnchoredRegionWC>, 'children' | 'style'> &
|
|
@@ -191,6 +182,15 @@ export declare const AnchoredRegion: React.ForwardRefExoticComponent<
|
|
|
191
182
|
>;
|
|
192
183
|
export type AnchoredRegionRef = AnchoredRegionWC;
|
|
193
184
|
|
|
185
|
+
export declare const Avatar: React.ForwardRefExoticComponent<
|
|
186
|
+
React.PropsWithChildren<
|
|
187
|
+
Omit<PublicOf<AvatarWC>, 'children' | 'style'> &
|
|
188
|
+
HTMLWCProps & {
|
|
189
|
+
}
|
|
190
|
+
> & React.RefAttributes<AvatarWC>
|
|
191
|
+
>;
|
|
192
|
+
export type AvatarRef = AvatarWC;
|
|
193
|
+
|
|
194
194
|
export declare const Badge: React.ForwardRefExoticComponent<
|
|
195
195
|
React.PropsWithChildren<
|
|
196
196
|
Omit<PublicOf<BadgeWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -144,11 +144,6 @@ const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
|
144
144
|
return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
|
|
145
145
|
});
|
|
146
146
|
|
|
147
|
-
const Avatar = React.forwardRef(function Avatar(props, ref) {
|
|
148
|
-
const { children, ...rest } = props;
|
|
149
|
-
return React.createElement(customElements.getName(AvatarWC) ?? '%%prefix%%-avatar', { ...rest, ref }, children);
|
|
150
|
-
});
|
|
151
|
-
|
|
152
147
|
const AnchoredRegion = React.forwardRef(function AnchoredRegion(props, ref) {
|
|
153
148
|
const { onLoaded, onPositionchange, children, ...rest } = props;
|
|
154
149
|
const _innerRef = React.useRef(null);
|
|
@@ -171,6 +166,11 @@ const AnchoredRegion = React.forwardRef(function AnchoredRegion(props, ref) {
|
|
|
171
166
|
return React.createElement(customElements.getName(AnchoredRegionWC) ?? '%%prefix%%-anchored-region', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
172
167
|
});
|
|
173
168
|
|
|
169
|
+
const Avatar = React.forwardRef(function Avatar(props, ref) {
|
|
170
|
+
const { children, ...rest } = props;
|
|
171
|
+
return React.createElement(customElements.getName(AvatarWC) ?? '%%prefix%%-avatar', { ...rest, ref }, children);
|
|
172
|
+
});
|
|
173
|
+
|
|
174
174
|
const Badge = React.forwardRef(function Badge(props, ref) {
|
|
175
175
|
const { children, ...rest } = props;
|
|
176
176
|
return React.createElement(customElements.getName(BadgeWC) ?? '%%prefix%%-badge', { ...rest, ref }, children);
|
|
@@ -928,8 +928,8 @@ module.exports = {
|
|
|
928
928
|
AiCriteriaSearch,
|
|
929
929
|
AiIndicator,
|
|
930
930
|
Anchor,
|
|
931
|
-
Avatar,
|
|
932
931
|
AnchoredRegion,
|
|
932
|
+
Avatar,
|
|
933
933
|
Badge,
|
|
934
934
|
Banner,
|
|
935
935
|
Breadcrumb,
|
package/dist/react.mjs
CHANGED
|
@@ -142,11 +142,6 @@ export const Anchor = React.forwardRef(function Anchor(props, ref) {
|
|
|
142
142
|
return React.createElement(customElements.getName(AnchorWC) ?? '%%prefix%%-anchor', { ...rest, ref }, children);
|
|
143
143
|
});
|
|
144
144
|
|
|
145
|
-
export const Avatar = React.forwardRef(function Avatar(props, ref) {
|
|
146
|
-
const { children, ...rest } = props;
|
|
147
|
-
return React.createElement(customElements.getName(AvatarWC) ?? '%%prefix%%-avatar', { ...rest, ref }, children);
|
|
148
|
-
});
|
|
149
|
-
|
|
150
145
|
export const AnchoredRegion = React.forwardRef(function AnchoredRegion(props, ref) {
|
|
151
146
|
const { onLoaded, onPositionchange, children, ...rest } = props;
|
|
152
147
|
const _innerRef = React.useRef(null);
|
|
@@ -169,6 +164,11 @@ export const AnchoredRegion = React.forwardRef(function AnchoredRegion(props, re
|
|
|
169
164
|
return React.createElement(customElements.getName(AnchoredRegionWC) ?? '%%prefix%%-anchored-region', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
|
|
170
165
|
});
|
|
171
166
|
|
|
167
|
+
export const Avatar = React.forwardRef(function Avatar(props, ref) {
|
|
168
|
+
const { children, ...rest } = props;
|
|
169
|
+
return React.createElement(customElements.getName(AvatarWC) ?? '%%prefix%%-avatar', { ...rest, ref }, children);
|
|
170
|
+
});
|
|
171
|
+
|
|
172
172
|
export const Badge = React.forwardRef(function Badge(props, ref) {
|
|
173
173
|
const { children, ...rest } = props;
|
|
174
174
|
return React.createElement(customElements.getName(BadgeWC) ?? '%%prefix%%-badge', { ...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.461.
|
|
4
|
+
"version": "14.461.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.461.
|
|
39
|
-
"@genesislcap/rollup-builder": "14.461.
|
|
40
|
-
"@genesislcap/ts-builder": "14.461.
|
|
41
|
-
"@genesislcap/uvu-playwright-builder": "14.461.
|
|
42
|
-
"@genesislcap/vite-builder": "14.461.
|
|
43
|
-
"@genesislcap/webpack-builder": "14.461.
|
|
38
|
+
"@genesislcap/genx": "14.461.2",
|
|
39
|
+
"@genesislcap/rollup-builder": "14.461.2",
|
|
40
|
+
"@genesislcap/ts-builder": "14.461.2",
|
|
41
|
+
"@genesislcap/uvu-playwright-builder": "14.461.2",
|
|
42
|
+
"@genesislcap/vite-builder": "14.461.2",
|
|
43
|
+
"@genesislcap/webpack-builder": "14.461.2"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@genesislcap/foundation-logger": "14.461.
|
|
47
|
-
"@genesislcap/foundation-ui": "14.461.
|
|
48
|
-
"@genesislcap/foundation-utils": "14.461.
|
|
46
|
+
"@genesislcap/foundation-logger": "14.461.2",
|
|
47
|
+
"@genesislcap/foundation-ui": "14.461.2",
|
|
48
|
+
"@genesislcap/foundation-utils": "14.461.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": "7999f5af9df17157002c463d10fe75a14ac43521"
|
|
77
77
|
}
|