@genesislcap/foundation-zero 14.427.0 → 14.428.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 +684 -684
- package/dist/dts/react.d.ts +9 -9
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +5 -5
- package/package.json +12 -12
package/dist/dts/react.d.ts
CHANGED
|
@@ -117,15 +117,6 @@ interface HTMLWCProps extends React.AriaAttributes {
|
|
|
117
117
|
onInput?(e: Event): void;
|
|
118
118
|
}
|
|
119
119
|
|
|
120
|
-
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
121
|
-
React.PropsWithChildren<
|
|
122
|
-
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
123
|
-
HTMLWCProps & {
|
|
124
|
-
}
|
|
125
|
-
> & React.RefAttributes<AccordionWC>
|
|
126
|
-
>;
|
|
127
|
-
export type AccordionRef = AccordionWC;
|
|
128
|
-
|
|
129
120
|
export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
130
121
|
React.PropsWithChildren<
|
|
131
122
|
Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
|
|
@@ -144,6 +135,15 @@ export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
|
144
135
|
>;
|
|
145
136
|
export type ActionsMenuRef = ActionsMenuWC;
|
|
146
137
|
|
|
138
|
+
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
139
|
+
React.PropsWithChildren<
|
|
140
|
+
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
141
|
+
HTMLWCProps & {
|
|
142
|
+
}
|
|
143
|
+
> & React.RefAttributes<AccordionWC>
|
|
144
|
+
>;
|
|
145
|
+
export type AccordionRef = AccordionWC;
|
|
146
|
+
|
|
147
147
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
148
148
|
React.PropsWithChildren<
|
|
149
149
|
Omit<PublicOf<AiCriteriaSearchWC>, 'children' | 'style'> &
|
package/dist/react.cjs
CHANGED
|
@@ -99,11 +99,6 @@ function _mergeRefs(...refs) {
|
|
|
99
99
|
};
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
103
|
-
const { children, ...rest } = props;
|
|
104
|
-
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
|
|
105
|
-
});
|
|
106
|
-
|
|
107
102
|
const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
108
103
|
const { children, ...rest } = props;
|
|
109
104
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
|
|
@@ -114,6 +109,11 @@ const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
|
|
|
114
109
|
return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
|
|
115
110
|
});
|
|
116
111
|
|
|
112
|
+
const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
113
|
+
const { children, ...rest } = props;
|
|
114
|
+
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
|
|
115
|
+
});
|
|
116
|
+
|
|
117
117
|
const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
118
118
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
119
119
|
const _innerRef = React.useRef(null);
|
|
@@ -857,9 +857,9 @@ const UrlInput = React.forwardRef(function UrlInput(props, ref) {
|
|
|
857
857
|
});
|
|
858
858
|
|
|
859
859
|
module.exports = {
|
|
860
|
-
Accordion,
|
|
861
860
|
AccordionItem,
|
|
862
861
|
ActionsMenu,
|
|
862
|
+
Accordion,
|
|
863
863
|
AiCriteriaSearch,
|
|
864
864
|
AiIndicator,
|
|
865
865
|
Anchor,
|
package/dist/react.mjs
CHANGED
|
@@ -97,11 +97,6 @@ function _mergeRefs(...refs) {
|
|
|
97
97
|
};
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
export const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
101
|
-
const { children, ...rest } = props;
|
|
102
|
-
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
|
|
103
|
-
});
|
|
104
|
-
|
|
105
100
|
export const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
|
|
106
101
|
const { children, ...rest } = props;
|
|
107
102
|
return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
|
|
@@ -112,6 +107,11 @@ export 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
|
+
export const Accordion = React.forwardRef(function Accordion(props, ref) {
|
|
111
|
+
const { children, ...rest } = props;
|
|
112
|
+
return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
|
|
113
|
+
});
|
|
114
|
+
|
|
115
115
|
export const AiCriteriaSearch = React.forwardRef(function AiCriteriaSearch(props, ref) {
|
|
116
116
|
const { onCriteriaChanged, onValidationErrors, children, ...rest } = props;
|
|
117
117
|
const _innerRef = React.useRef(null);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-zero",
|
|
3
3
|
"description": "Genesis Foundation Zero Design System",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.428.0",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -73,18 +73,18 @@
|
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
75
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
|
|
76
|
-
"@genesislcap/genx": "14.
|
|
77
|
-
"@genesislcap/rollup-builder": "14.
|
|
78
|
-
"@genesislcap/ts-builder": "14.
|
|
79
|
-
"@genesislcap/uvu-playwright-builder": "14.
|
|
80
|
-
"@genesislcap/vite-builder": "14.
|
|
81
|
-
"@genesislcap/webpack-builder": "14.
|
|
76
|
+
"@genesislcap/genx": "14.428.0",
|
|
77
|
+
"@genesislcap/rollup-builder": "14.428.0",
|
|
78
|
+
"@genesislcap/ts-builder": "14.428.0",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "14.428.0",
|
|
80
|
+
"@genesislcap/vite-builder": "14.428.0",
|
|
81
|
+
"@genesislcap/webpack-builder": "14.428.0"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@genesislcap/foundation-comms": "14.
|
|
85
|
-
"@genesislcap/foundation-logger": "14.
|
|
86
|
-
"@genesislcap/foundation-ui": "14.
|
|
87
|
-
"@genesislcap/foundation-utils": "14.
|
|
84
|
+
"@genesislcap/foundation-comms": "14.428.0",
|
|
85
|
+
"@genesislcap/foundation-logger": "14.428.0",
|
|
86
|
+
"@genesislcap/foundation-ui": "14.428.0",
|
|
87
|
+
"@genesislcap/foundation-utils": "14.428.0",
|
|
88
88
|
"@microsoft/fast-colors": "5.3.1",
|
|
89
89
|
"@microsoft/fast-components": "2.30.6",
|
|
90
90
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -111,5 +111,5 @@
|
|
|
111
111
|
"require": "./dist/react.cjs"
|
|
112
112
|
}
|
|
113
113
|
},
|
|
114
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "e43acca8a6393d0f3d243d4fd3625457c9b6a8e7"
|
|
115
115
|
}
|