@genesislcap/foundation-ui 14.422.1 → 14.422.2-alpha-d34b2ee.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 +921 -921
- package/dist/dts/react.d.ts +11 -11
- package/dist/react.cjs +5 -5
- package/dist/react.mjs +3 -3
- package/package.json +19 -19
package/dist/dts/react.d.ts
CHANGED
|
@@ -128,6 +128,14 @@ export declare const AccordionItem: React.ForwardRefExoticComponent<
|
|
|
128
128
|
> & React.RefAttributes<AccordionItemWC>
|
|
129
129
|
>;
|
|
130
130
|
|
|
131
|
+
export declare const ActionsMenu: React.ForwardRefExoticComponent<
|
|
132
|
+
React.PropsWithChildren<
|
|
133
|
+
Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
|
|
134
|
+
HTMLWCProps & {
|
|
135
|
+
}
|
|
136
|
+
> & React.RefAttributes<ActionsMenuWC>
|
|
137
|
+
>;
|
|
138
|
+
|
|
131
139
|
export declare const Accordion: React.ForwardRefExoticComponent<
|
|
132
140
|
React.PropsWithChildren<
|
|
133
141
|
Omit<PublicOf<AccordionWC>, 'children' | 'style'> &
|
|
@@ -136,12 +144,12 @@ export declare const Accordion: React.ForwardRefExoticComponent<
|
|
|
136
144
|
> & React.RefAttributes<AccordionWC>
|
|
137
145
|
>;
|
|
138
146
|
|
|
139
|
-
export declare const
|
|
147
|
+
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
140
148
|
React.PropsWithChildren<
|
|
141
|
-
Omit<PublicOf<
|
|
149
|
+
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
142
150
|
HTMLWCProps & {
|
|
143
151
|
}
|
|
144
|
-
> & React.RefAttributes<
|
|
152
|
+
> & React.RefAttributes<AiIndicatorWC>
|
|
145
153
|
>;
|
|
146
154
|
|
|
147
155
|
export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
@@ -154,14 +162,6 @@ export declare const AiCriteriaSearch: React.ForwardRefExoticComponent<
|
|
|
154
162
|
> & React.RefAttributes<AiCriteriaSearchWC>
|
|
155
163
|
>;
|
|
156
164
|
|
|
157
|
-
export declare const AiIndicator: React.ForwardRefExoticComponent<
|
|
158
|
-
React.PropsWithChildren<
|
|
159
|
-
Omit<PublicOf<AiIndicatorWC>, 'children' | 'style'> &
|
|
160
|
-
HTMLWCProps & {
|
|
161
|
-
}
|
|
162
|
-
> & React.RefAttributes<AiIndicatorWC>
|
|
163
|
-
>;
|
|
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
|
@@ -98,9 +98,11 @@ const { wrap } = provideReactWrapper(React);
|
|
|
98
98
|
|
|
99
99
|
const AccordionItem = wrap(AccordionItemWC);
|
|
100
100
|
|
|
101
|
+
const ActionsMenu = wrap(ActionsMenuWC);
|
|
102
|
+
|
|
101
103
|
const Accordion = wrap(AccordionWC);
|
|
102
104
|
|
|
103
|
-
const
|
|
105
|
+
const AiIndicator = wrap(AiIndicatorWC);
|
|
104
106
|
|
|
105
107
|
const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
106
108
|
events: {
|
|
@@ -109,8 +111,6 @@ const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
|
109
111
|
},
|
|
110
112
|
});
|
|
111
113
|
|
|
112
|
-
const AiIndicator = wrap(AiIndicatorWC);
|
|
113
|
-
|
|
114
114
|
const Anchor = wrap(AnchorWC);
|
|
115
115
|
|
|
116
116
|
const AnchoredRegion = wrap(AnchoredRegionWC, {
|
|
@@ -374,10 +374,10 @@ const UrlInput = wrap(UrlInputWC);
|
|
|
374
374
|
|
|
375
375
|
module.exports = {
|
|
376
376
|
AccordionItem,
|
|
377
|
-
Accordion,
|
|
378
377
|
ActionsMenu,
|
|
379
|
-
|
|
378
|
+
Accordion,
|
|
380
379
|
AiIndicator,
|
|
380
|
+
AiCriteriaSearch,
|
|
381
381
|
Anchor,
|
|
382
382
|
AnchoredRegion,
|
|
383
383
|
Avatar,
|
package/dist/react.mjs
CHANGED
|
@@ -96,9 +96,11 @@ const { wrap } = provideReactWrapper(React);
|
|
|
96
96
|
|
|
97
97
|
export const AccordionItem = wrap(AccordionItemWC);
|
|
98
98
|
|
|
99
|
+
export const ActionsMenu = wrap(ActionsMenuWC);
|
|
100
|
+
|
|
99
101
|
export const Accordion = wrap(AccordionWC);
|
|
100
102
|
|
|
101
|
-
export const
|
|
103
|
+
export const AiIndicator = wrap(AiIndicatorWC);
|
|
102
104
|
|
|
103
105
|
export const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
104
106
|
events: {
|
|
@@ -107,8 +109,6 @@ export const AiCriteriaSearch = wrap(AiCriteriaSearchWC, {
|
|
|
107
109
|
},
|
|
108
110
|
});
|
|
109
111
|
|
|
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.422.
|
|
4
|
+
"version": "14.422.2-alpha-d34b2ee.0",
|
|
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.422.
|
|
89
|
-
"@genesislcap/genx": "14.422.
|
|
90
|
-
"@genesislcap/rollup-builder": "14.422.
|
|
91
|
-
"@genesislcap/ts-builder": "14.422.
|
|
92
|
-
"@genesislcap/uvu-playwright-builder": "14.422.
|
|
93
|
-
"@genesislcap/vite-builder": "14.422.
|
|
94
|
-
"@genesislcap/webpack-builder": "14.422.
|
|
88
|
+
"@genesislcap/foundation-testing": "14.422.2-alpha-d34b2ee.0",
|
|
89
|
+
"@genesislcap/genx": "14.422.2-alpha-d34b2ee.0",
|
|
90
|
+
"@genesislcap/rollup-builder": "14.422.2-alpha-d34b2ee.0",
|
|
91
|
+
"@genesislcap/ts-builder": "14.422.2-alpha-d34b2ee.0",
|
|
92
|
+
"@genesislcap/uvu-playwright-builder": "14.422.2-alpha-d34b2ee.0",
|
|
93
|
+
"@genesislcap/vite-builder": "14.422.2-alpha-d34b2ee.0",
|
|
94
|
+
"@genesislcap/webpack-builder": "14.422.2-alpha-d34b2ee.0",
|
|
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.422.
|
|
104
|
-
"@genesislcap/foundation-ai": "14.422.
|
|
105
|
-
"@genesislcap/foundation-comms": "14.422.
|
|
106
|
-
"@genesislcap/foundation-criteria": "14.422.
|
|
107
|
-
"@genesislcap/foundation-errors": "14.422.
|
|
108
|
-
"@genesislcap/foundation-events": "14.422.
|
|
109
|
-
"@genesislcap/foundation-logger": "14.422.
|
|
110
|
-
"@genesislcap/foundation-notifications": "14.422.
|
|
111
|
-
"@genesislcap/foundation-user": "14.422.
|
|
112
|
-
"@genesislcap/foundation-utils": "14.422.
|
|
103
|
+
"@genesislcap/expression-builder": "14.422.2-alpha-d34b2ee.0",
|
|
104
|
+
"@genesislcap/foundation-ai": "14.422.2-alpha-d34b2ee.0",
|
|
105
|
+
"@genesislcap/foundation-comms": "14.422.2-alpha-d34b2ee.0",
|
|
106
|
+
"@genesislcap/foundation-criteria": "14.422.2-alpha-d34b2ee.0",
|
|
107
|
+
"@genesislcap/foundation-errors": "14.422.2-alpha-d34b2ee.0",
|
|
108
|
+
"@genesislcap/foundation-events": "14.422.2-alpha-d34b2ee.0",
|
|
109
|
+
"@genesislcap/foundation-logger": "14.422.2-alpha-d34b2ee.0",
|
|
110
|
+
"@genesislcap/foundation-notifications": "14.422.2-alpha-d34b2ee.0",
|
|
111
|
+
"@genesislcap/foundation-user": "14.422.2-alpha-d34b2ee.0",
|
|
112
|
+
"@genesislcap/foundation-utils": "14.422.2-alpha-d34b2ee.0",
|
|
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": "96cb2d856fdab224023b5a550b7a117840b06c7c"
|
|
149
149
|
}
|