@genesislcap/foundation-ui 14.419.1 → 14.419.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 +845 -845
- package/dist/dts/react.d.ts +12 -12
- package/dist/react.cjs +6 -6
- package/dist/react.mjs +4 -4
- package/package.json +19 -19
package/dist/dts/react.d.ts
CHANGED
|
@@ -120,20 +120,20 @@ interface HTMLWCProps extends React.AriaAttributes {
|
|
|
120
120
|
onInput?(e: Event): void;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
-
export declare const
|
|
123
|
+
export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
124
124
|
React.PropsWithChildren<
|
|
125
|
-
Omit<PublicOf<
|
|
125
|
+
Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
|
|
126
126
|
HTMLWCProps & {
|
|
127
127
|
}
|
|
128
|
-
> & React.RefAttributes<
|
|
128
|
+
> & React.RefAttributes<AccordionItemWC>
|
|
129
129
|
>;
|
|
130
130
|
|
|
131
|
-
export declare const
|
|
131
|
+
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
132
132
|
React.PropsWithChildren<
|
|
133
|
-
Omit<PublicOf<
|
|
133
|
+
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
134
134
|
HTMLWCProps & {
|
|
135
135
|
}
|
|
136
|
-
> & React.RefAttributes<
|
|
136
|
+
> & React.RefAttributes<ActionsMenuWC>
|
|
137
137
|
>;
|
|
138
138
|
|
|
139
139
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
@@ -146,20 +146,20 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
146
146
|
> & React.RefAttributes<AiCriteriaSearchWC>
|
|
147
147
|
>;
|
|
148
148
|
|
|
149
|
-
export declare const
|
|
149
|
+
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
150
150
|
React.PropsWithChildren<
|
|
151
|
-
Omit<PublicOf<
|
|
151
|
+
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
152
152
|
HTMLWCProps & {
|
|
153
153
|
}
|
|
154
|
-
> & React.RefAttributes<
|
|
154
|
+
> & React.RefAttributes<AccordionWC>
|
|
155
155
|
>;
|
|
156
156
|
|
|
157
|
-
export declare const
|
|
157
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
158
158
|
React.PropsWithChildren<
|
|
159
|
-
Omit<PublicOf<
|
|
159
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
160
160
|
HTMLWCProps & {
|
|
161
161
|
}
|
|
162
|
-
> & React.RefAttributes<
|
|
162
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
163
163
|
>;
|
|
164
164
|
|
|
165
165
|
export declare const Anchor: React.ForwardRefExoticComponent<
|
package/dist/react.cjs
CHANGED
|
@@ -96,10 +96,10 @@ const { UrlInput: UrlInputWC } = require('./esm/url-input/url-input.js');
|
|
|
96
96
|
|
|
97
97
|
const { wrap } = provideReactWrapper(React);
|
|
98
98
|
|
|
99
|
-
const ActionsMenu = wrap(ActionsMenuWC);
|
|
100
|
-
|
|
101
99
|
const AccordionItem = wrap(AccordionItemWC);
|
|
102
100
|
|
|
101
|
+
const ActionsMenu = wrap(ActionsMenuWC);
|
|
102
|
+
|
|
103
103
|
const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
104
104
|
events: {
|
|
105
105
|
onCriteriaChanged: 'criteria-changed',
|
|
@@ -107,10 +107,10 @@ const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
|
107
107
|
},
|
|
108
108
|
});
|
|
109
109
|
|
|
110
|
-
const AiIndicator = wrap(AiIndicatorWC);
|
|
111
|
-
|
|
112
110
|
const Accordion = wrap(AccordionWC);
|
|
113
111
|
|
|
112
|
+
const AiIndicator = wrap(AiIndicatorWC);
|
|
113
|
+
|
|
114
114
|
const Anchor = wrap(AnchorWC);
|
|
115
115
|
|
|
116
116
|
const AnchoredRegion = wrap(AnchoredRegionWC, {
|
|
@@ -373,11 +373,11 @@ const TreeView = wrap(TreeViewWC);
|
|
|
373
373
|
const UrlInput = wrap(UrlInputWC);
|
|
374
374
|
|
|
375
375
|
module.exports = {
|
|
376
|
-
ActionsMenu,
|
|
377
376
|
AccordionItem,
|
|
377
|
+
ActionsMenu,
|
|
378
378
|
AiCriteriaSearch,
|
|
379
|
-
AiIndicator,
|
|
380
379
|
Accordion,
|
|
380
|
+
AiIndicator,
|
|
381
381
|
Anchor,
|
|
382
382
|
AnchoredRegion,
|
|
383
383
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -94,10 +94,10 @@ import { UrlInput as UrlInputWC } from './esm/url-input/url-input.js';
|
|
|
94
94
|
|
|
95
95
|
const { wrap } = provideReactWrapper(React);
|
|
96
96
|
|
|
97
|
-
export const ActionsMenu = wrap(ActionsMenuWC);
|
|
98
|
-
|
|
99
97
|
export const AccordionItem = wrap(AccordionItemWC);
|
|
100
98
|
|
|
99
|
+
export const ActionsMenu = wrap(ActionsMenuWC);
|
|
100
|
+
|
|
101
101
|
export const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
102
102
|
events: {
|
|
103
103
|
onCriteriaChanged: 'criteria-changed',
|
|
@@ -105,10 +105,10 @@ export const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
|
105
105
|
},
|
|
106
106
|
});
|
|
107
107
|
|
|
108
|
-
export const AiIndicator = wrap(AiIndicatorWC);
|
|
109
|
-
|
|
110
108
|
export const Accordion = wrap(AccordionWC);
|
|
111
109
|
|
|
110
|
+
export const AiIndicator = wrap(AiIndicatorWC);
|
|
111
|
+
|
|
112
112
|
export const Anchor = wrap(AnchorWC);
|
|
113
113
|
|
|
114
114
|
export const AnchoredRegion = wrap(AnchoredRegionWC, {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@genesislcap/foundation-ui",
|
|
3
3
|
"description": "Genesis Foundation UI",
|
|
4
|
-
"version": "14.419.
|
|
4
|
+
"version": "14.419.2",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"license": "SEE LICENSE IN license.txt",
|
|
7
7
|
"main": "dist/esm/index.js",
|
|
@@ -85,13 +85,13 @@
|
|
|
85
85
|
}
|
|
86
86
|
},
|
|
87
87
|
"devDependencies": {
|
|
88
|
-
"@genesislcap/foundation-testing": "14.419.
|
|
89
|
-
"@genesislcap/genx": "14.419.
|
|
90
|
-
"@genesislcap/rollup-builder": "14.419.
|
|
91
|
-
"@genesislcap/ts-builder": "14.419.
|
|
92
|
-
"@genesislcap/uvu-playwright-builder": "14.419.
|
|
93
|
-
"@genesislcap/vite-builder": "14.419.
|
|
94
|
-
"@genesislcap/webpack-builder": "14.419.
|
|
88
|
+
"@genesislcap/foundation-testing": "14.419.2",
|
|
89
|
+
"@genesislcap/genx": "14.419.2",
|
|
90
|
+
"@genesislcap/rollup-builder": "14.419.2",
|
|
91
|
+
"@genesislcap/ts-builder": "14.419.2",
|
|
92
|
+
"@genesislcap/uvu-playwright-builder": "14.419.2",
|
|
93
|
+
"@genesislcap/vite-builder": "14.419.2",
|
|
94
|
+
"@genesislcap/webpack-builder": "14.419.2",
|
|
95
95
|
"copyfiles": "^2.4.1"
|
|
96
96
|
},
|
|
97
97
|
"dependencies": {
|
|
@@ -100,16 +100,16 @@
|
|
|
100
100
|
"@fortawesome/free-regular-svg-icons": "^6.2.1",
|
|
101
101
|
"@fortawesome/free-solid-svg-icons": "^6.2.1",
|
|
102
102
|
"@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
|
|
103
|
-
"@genesislcap/expression-builder": "14.419.
|
|
104
|
-
"@genesislcap/foundation-ai": "14.419.
|
|
105
|
-
"@genesislcap/foundation-comms": "14.419.
|
|
106
|
-
"@genesislcap/foundation-criteria": "14.419.
|
|
107
|
-
"@genesislcap/foundation-errors": "14.419.
|
|
108
|
-
"@genesislcap/foundation-events": "14.419.
|
|
109
|
-
"@genesislcap/foundation-logger": "14.419.
|
|
110
|
-
"@genesislcap/foundation-notifications": "14.419.
|
|
111
|
-
"@genesislcap/foundation-user": "14.419.
|
|
112
|
-
"@genesislcap/foundation-utils": "14.419.
|
|
103
|
+
"@genesislcap/expression-builder": "14.419.2",
|
|
104
|
+
"@genesislcap/foundation-ai": "14.419.2",
|
|
105
|
+
"@genesislcap/foundation-comms": "14.419.2",
|
|
106
|
+
"@genesislcap/foundation-criteria": "14.419.2",
|
|
107
|
+
"@genesislcap/foundation-errors": "14.419.2",
|
|
108
|
+
"@genesislcap/foundation-events": "14.419.2",
|
|
109
|
+
"@genesislcap/foundation-logger": "14.419.2",
|
|
110
|
+
"@genesislcap/foundation-notifications": "14.419.2",
|
|
111
|
+
"@genesislcap/foundation-user": "14.419.2",
|
|
112
|
+
"@genesislcap/foundation-utils": "14.419.2",
|
|
113
113
|
"@microsoft/fast-colors": "5.3.1",
|
|
114
114
|
"@microsoft/fast-components": "2.30.6",
|
|
115
115
|
"@microsoft/fast-element": "1.14.0",
|
|
@@ -145,5 +145,5 @@
|
|
|
145
145
|
"peerDependencies": {
|
|
146
146
|
"@microsoft/fast-react-wrapper": ">=0.3.0"
|
|
147
147
|
},
|
|
148
|
-
"gitHead": "
|
|
148
|
+
"gitHead": "a9bf0fc6bd28727bf0f95f63b227aee7c418470f"
|
|
149
149
|
}
|