@genesislcap/foundation-zero 14.436.0-FUI-2489.4 → 14.436.0-FUI-2489.6

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.
@@ -126,6 +126,15 @@ export declare const Accordion: React.ForwardRefExoticComponent<
126
126
  >;
127
127
  export type AccordionRef = AccordionWC;
128
128
 
129
+ export declare const AccordionItem: React.ForwardRefExoticComponent<
130
+ React.PropsWithChildren<
131
+ Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
132
+ HTMLWCProps & {
133
+ }
134
+ > & React.RefAttributes<AccordionItemWC>
135
+ >;
136
+ export type AccordionItemRef = AccordionItemWC;
137
+
129
138
  export declare const ActionsMenu: React.ForwardRefExoticComponent<
130
139
  React.PropsWithChildren<
131
140
  Omit<PublicOf<ActionsMenuWC>, 'children' | 'style'> &
@@ -193,15 +202,6 @@ export declare const Badge: React.ForwardRefExoticComponent<
193
202
  >;
194
203
  export type BadgeRef = BadgeWC;
195
204
 
196
- export declare const AccordionItem: React.ForwardRefExoticComponent<
197
- React.PropsWithChildren<
198
- Omit<PublicOf<AccordionItemWC>, 'children' | 'style'> &
199
- HTMLWCProps & {
200
- }
201
- > & React.RefAttributes<AccordionItemWC>
202
- >;
203
- export type AccordionItemRef = AccordionItemWC;
204
-
205
205
  export declare const Banner: React.ForwardRefExoticComponent<
206
206
  React.PropsWithChildren<
207
207
  Omit<PublicOf<BannerWC>, 'children' | 'style'> &
@@ -220,6 +220,15 @@ export declare const Breadcrumb: React.ForwardRefExoticComponent<
220
220
  >;
221
221
  export type BreadcrumbRef = BreadcrumbWC;
222
222
 
223
+ export declare const BreadcrumbItem: React.ForwardRefExoticComponent<
224
+ React.PropsWithChildren<
225
+ Omit<PublicOf<BreadcrumbItemWC>, 'children' | 'style'> &
226
+ HTMLWCProps & {
227
+ }
228
+ > & React.RefAttributes<BreadcrumbItemWC>
229
+ >;
230
+ export type BreadcrumbItemRef = BreadcrumbItemWC;
231
+
223
232
  export declare const Button: React.ForwardRefExoticComponent<
224
233
  React.PropsWithChildren<
225
234
  Omit<PublicOf<ButtonWC>, 'children' | 'style'> &
@@ -284,15 +293,6 @@ export declare const ConnectionIndicator: React.ForwardRefExoticComponent<
284
293
  >;
285
294
  export type ConnectionIndicatorRef = ConnectionIndicatorWC;
286
295
 
287
- export declare const BreadcrumbItem: React.ForwardRefExoticComponent<
288
- React.PropsWithChildren<
289
- Omit<PublicOf<BreadcrumbItemWC>, 'children' | 'style'> &
290
- HTMLWCProps & {
291
- }
292
- > & React.RefAttributes<BreadcrumbItemWC>
293
- >;
294
- export type BreadcrumbItemRef = BreadcrumbItemWC;
295
-
296
296
  export declare const DataGridCell: React.ForwardRefExoticComponent<
297
297
  React.PropsWithChildren<
298
298
  Omit<PublicOf<DataGridCellWC>, 'children' | 'style'> &
@@ -332,6 +332,15 @@ export declare const DatePicker: React.ForwardRefExoticComponent<
332
332
  >;
333
333
  export type DatePickerRef = DatePickerWC;
334
334
 
335
+ export declare const ZeroDesignSystemProvider: React.ForwardRefExoticComponent<
336
+ React.PropsWithChildren<
337
+ Omit<PublicOf<ZeroDesignSystemProviderWC>, 'children' | 'style'> &
338
+ HTMLWCProps & {
339
+ }
340
+ > & React.RefAttributes<ZeroDesignSystemProviderWC>
341
+ >;
342
+ export type ZeroDesignSystemProviderRef = ZeroDesignSystemProviderWC;
343
+
335
344
  export declare const Dialog: React.ForwardRefExoticComponent<
336
345
  React.PropsWithChildren<
337
346
  Omit<PublicOf<DialogWC>, 'children' | 'style'> &
@@ -396,15 +405,6 @@ export declare const ErrorBoundary: React.ForwardRefExoticComponent<
396
405
  >;
397
406
  export type ErrorBoundaryRef = ErrorBoundaryWC;
398
407
 
399
- export declare const ZeroDesignSystemProvider: React.ForwardRefExoticComponent<
400
- React.PropsWithChildren<
401
- Omit<PublicOf<ZeroDesignSystemProviderWC>, 'children' | 'style'> &
402
- HTMLWCProps & {
403
- }
404
- > & React.RefAttributes<ZeroDesignSystemProviderWC>
405
- >;
406
- export type ZeroDesignSystemProviderRef = ZeroDesignSystemProviderWC;
407
-
408
408
  export declare const ErrorDialog: React.ForwardRefExoticComponent<
409
409
  React.PropsWithChildren<
410
410
  Omit<PublicOf<ErrorDialogWC>, 'children' | 'style'> &
package/dist/react.cjs CHANGED
@@ -104,6 +104,11 @@ const Accordion = React.forwardRef(function Accordion(props, ref) {
104
104
  return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
105
105
  });
106
106
 
107
+ const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
108
+ const { children, ...rest } = props;
109
+ return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
110
+ });
111
+
107
112
  const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
108
113
  const { children, ...rest } = props;
109
114
  return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
@@ -173,11 +178,6 @@ const Badge = React.forwardRef(function Badge(props, ref) {
173
178
  return React.createElement(customElements.getName(BadgeWC) ?? '%%prefix%%-badge', { ...rest, ref }, children);
174
179
  });
175
180
 
176
- const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
177
- const { children, ...rest } = props;
178
- return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
179
- });
180
-
181
181
  const Banner = React.forwardRef(function Banner(props, ref) {
182
182
  const { children, ...rest } = props;
183
183
  return React.createElement(customElements.getName(BannerWC) ?? '%%prefix%%-banner', { ...rest, ref }, children);
@@ -188,6 +188,11 @@ const Breadcrumb = React.forwardRef(function Breadcrumb(props, ref) {
188
188
  return React.createElement(customElements.getName(BreadcrumbWC) ?? '%%prefix%%-breadcrumb', { ...rest, ref }, children);
189
189
  });
190
190
 
191
+ const BreadcrumbItem = React.forwardRef(function BreadcrumbItem(props, ref) {
192
+ const { children, ...rest } = props;
193
+ return React.createElement(customElements.getName(BreadcrumbItemWC) ?? '%%prefix%%-breadcrumb-item', { ...rest, ref }, children);
194
+ });
195
+
191
196
  const Button = React.forwardRef(function Button(props, ref) {
192
197
  const { children, ...rest } = props;
193
198
  return React.createElement(customElements.getName(ButtonWC) ?? '%%prefix%%-button', { ...rest, ref }, children);
@@ -235,11 +240,6 @@ const ConnectionIndicator = React.forwardRef(function ConnectionIndicator(props,
235
240
  return React.createElement(customElements.getName(ConnectionIndicatorWC) ?? '%%prefix%%-connection-indicator', { ...rest, ref }, children);
236
241
  });
237
242
 
238
- const BreadcrumbItem = React.forwardRef(function BreadcrumbItem(props, ref) {
239
- const { children, ...rest } = props;
240
- return React.createElement(customElements.getName(BreadcrumbItemWC) ?? '%%prefix%%-breadcrumb-item', { ...rest, ref }, children);
241
- });
242
-
243
243
  const DataGridCell = React.forwardRef(function DataGridCell(props, ref) {
244
244
  const { onCellFocused, children, ...rest } = props;
245
245
  const _innerRef = React.useRef(null);
@@ -296,6 +296,11 @@ const DatePicker = React.forwardRef(function DatePicker(props, ref) {
296
296
  return React.createElement(customElements.getName(DatePickerWC) ?? '%%prefix%%-date-picker', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
297
297
  });
298
298
 
299
+ const ZeroDesignSystemProvider = React.forwardRef(function ZeroDesignSystemProvider(props, ref) {
300
+ const { children, ...rest } = props;
301
+ return React.createElement(customElements.getName(ZeroDesignSystemProviderWC) ?? '%%prefix%%-design-system-provider', { ...rest, ref }, children);
302
+ });
303
+
299
304
  const Dialog = React.forwardRef(function Dialog(props, ref) {
300
305
  const { onClose, children, ...rest } = props;
301
306
  const _innerRef = React.useRef(null);
@@ -343,11 +348,6 @@ const ErrorBoundary = React.forwardRef(function ErrorBoundary(props, ref) {
343
348
  return React.createElement(customElements.getName(ErrorBoundaryWC) ?? '%%prefix%%-error-boundary', { ...rest, ref }, children);
344
349
  });
345
350
 
346
- const ZeroDesignSystemProvider = React.forwardRef(function ZeroDesignSystemProvider(props, ref) {
347
- const { children, ...rest } = props;
348
- return React.createElement(customElements.getName(ZeroDesignSystemProviderWC) ?? '%%prefix%%-design-system-provider', { ...rest, ref }, children);
349
- });
350
-
351
351
  const ErrorDialog = React.forwardRef(function ErrorDialog(props, ref) {
352
352
  const { children, ...rest } = props;
353
353
  return React.createElement(customElements.getName(ErrorDialogWC) ?? '%%prefix%%-error-dialog', { ...rest, ref }, children);
@@ -858,6 +858,7 @@ const UrlInput = React.forwardRef(function UrlInput(props, ref) {
858
858
 
859
859
  module.exports = {
860
860
  Accordion,
861
+ AccordionItem,
861
862
  ActionsMenu,
862
863
  AiCriteriaSearch,
863
864
  AiIndicator,
@@ -865,9 +866,9 @@ module.exports = {
865
866
  AnchoredRegion,
866
867
  Avatar,
867
868
  Badge,
868
- AccordionItem,
869
869
  Banner,
870
870
  Breadcrumb,
871
+ BreadcrumbItem,
871
872
  Button,
872
873
  Calendar,
873
874
  Card,
@@ -875,11 +876,11 @@ module.exports = {
875
876
  Checkbox,
876
877
  Combobox,
877
878
  ConnectionIndicator,
878
- BreadcrumbItem,
879
879
  DataGridCell,
880
880
  DataGridRow,
881
881
  DataGrid,
882
882
  DatePicker,
883
+ ZeroDesignSystemProvider,
883
884
  Dialog,
884
885
  Disclosure,
885
886
  Divider,
@@ -887,7 +888,6 @@ module.exports = {
887
888
  EnvironmentIndicator,
888
889
  ErrorBanner,
889
890
  ErrorBoundary,
890
- ZeroDesignSystemProvider,
891
891
  ErrorDialog,
892
892
  FileUpload,
893
893
  Filter,
package/dist/react.mjs CHANGED
@@ -102,6 +102,11 @@ export const Accordion = React.forwardRef(function Accordion(props, ref) {
102
102
  return React.createElement(customElements.getName(AccordionWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
103
103
  });
104
104
 
105
+ export const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
106
+ const { children, ...rest } = props;
107
+ return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
108
+ });
109
+
105
110
  export const ActionsMenu = React.forwardRef(function ActionsMenu(props, ref) {
106
111
  const { children, ...rest } = props;
107
112
  return React.createElement(customElements.getName(ActionsMenuWC) ?? '%%prefix%%-actions-menu', { ...rest, ref }, children);
@@ -171,11 +176,6 @@ export const Badge = React.forwardRef(function Badge(props, ref) {
171
176
  return React.createElement(customElements.getName(BadgeWC) ?? '%%prefix%%-badge', { ...rest, ref }, children);
172
177
  });
173
178
 
174
- export const AccordionItem = React.forwardRef(function AccordionItem(props, ref) {
175
- const { children, ...rest } = props;
176
- return React.createElement(customElements.getName(AccordionItemWC) ?? '%%prefix%%-card', { ...rest, ref }, children);
177
- });
178
-
179
179
  export const Banner = React.forwardRef(function Banner(props, ref) {
180
180
  const { children, ...rest } = props;
181
181
  return React.createElement(customElements.getName(BannerWC) ?? '%%prefix%%-banner', { ...rest, ref }, children);
@@ -186,6 +186,11 @@ export const Breadcrumb = React.forwardRef(function Breadcrumb(props, ref) {
186
186
  return React.createElement(customElements.getName(BreadcrumbWC) ?? '%%prefix%%-breadcrumb', { ...rest, ref }, children);
187
187
  });
188
188
 
189
+ export const BreadcrumbItem = React.forwardRef(function BreadcrumbItem(props, ref) {
190
+ const { children, ...rest } = props;
191
+ return React.createElement(customElements.getName(BreadcrumbItemWC) ?? '%%prefix%%-breadcrumb-item', { ...rest, ref }, children);
192
+ });
193
+
189
194
  export const Button = React.forwardRef(function Button(props, ref) {
190
195
  const { children, ...rest } = props;
191
196
  return React.createElement(customElements.getName(ButtonWC) ?? '%%prefix%%-button', { ...rest, ref }, children);
@@ -233,11 +238,6 @@ export const ConnectionIndicator = React.forwardRef(function ConnectionIndicator
233
238
  return React.createElement(customElements.getName(ConnectionIndicatorWC) ?? '%%prefix%%-connection-indicator', { ...rest, ref }, children);
234
239
  });
235
240
 
236
- export const BreadcrumbItem = React.forwardRef(function BreadcrumbItem(props, ref) {
237
- const { children, ...rest } = props;
238
- return React.createElement(customElements.getName(BreadcrumbItemWC) ?? '%%prefix%%-breadcrumb-item', { ...rest, ref }, children);
239
- });
240
-
241
241
  export const DataGridCell = React.forwardRef(function DataGridCell(props, ref) {
242
242
  const { onCellFocused, children, ...rest } = props;
243
243
  const _innerRef = React.useRef(null);
@@ -294,6 +294,11 @@ export const DatePicker = React.forwardRef(function DatePicker(props, ref) {
294
294
  return React.createElement(customElements.getName(DatePickerWC) ?? '%%prefix%%-date-picker', { ...rest, ref: _mergeRefs(_innerRef, ref) }, children);
295
295
  });
296
296
 
297
+ export const ZeroDesignSystemProvider = React.forwardRef(function ZeroDesignSystemProvider(props, ref) {
298
+ const { children, ...rest } = props;
299
+ return React.createElement(customElements.getName(ZeroDesignSystemProviderWC) ?? '%%prefix%%-design-system-provider', { ...rest, ref }, children);
300
+ });
301
+
297
302
  export const Dialog = React.forwardRef(function Dialog(props, ref) {
298
303
  const { onClose, children, ...rest } = props;
299
304
  const _innerRef = React.useRef(null);
@@ -341,11 +346,6 @@ export const ErrorBoundary = React.forwardRef(function ErrorBoundary(props, ref)
341
346
  return React.createElement(customElements.getName(ErrorBoundaryWC) ?? '%%prefix%%-error-boundary', { ...rest, ref }, children);
342
347
  });
343
348
 
344
- export const ZeroDesignSystemProvider = React.forwardRef(function ZeroDesignSystemProvider(props, ref) {
345
- const { children, ...rest } = props;
346
- return React.createElement(customElements.getName(ZeroDesignSystemProviderWC) ?? '%%prefix%%-design-system-provider', { ...rest, ref }, children);
347
- });
348
-
349
349
  export const ErrorDialog = React.forwardRef(function ErrorDialog(props, ref) {
350
350
  const { children, ...rest } = props;
351
351
  return React.createElement(customElements.getName(ErrorDialogWC) ?? '%%prefix%%-error-dialog', { ...rest, ref }, children);
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.436.0-FUI-2489.4",
4
+ "version": "14.436.0-FUI-2489.6",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -61,8 +61,10 @@
61
61
  "dev:tsc": "genx dev -b ts",
62
62
  "dev:webpack": "genx dev -b webpack",
63
63
  "serve": "genx serve",
64
- "lint": "genx lint --profile",
65
- "lint:fix": "genx lint --fix"
64
+ "lint": "genx lint",
65
+ "lint:fix": "genx lint --fix",
66
+ "lint:ox": "genx lint -l ox",
67
+ "lint:ox:fix": "genx lint -l ox --fix"
66
68
  },
67
69
  "madge": {
68
70
  "detectiveOptions": {
@@ -73,18 +75,18 @@
73
75
  },
74
76
  "devDependencies": {
75
77
  "@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
76
- "@genesislcap/genx": "14.436.0-FUI-2489.4",
77
- "@genesislcap/rollup-builder": "14.436.0-FUI-2489.4",
78
- "@genesislcap/ts-builder": "14.436.0-FUI-2489.4",
79
- "@genesislcap/uvu-playwright-builder": "14.436.0-FUI-2489.4",
80
- "@genesislcap/vite-builder": "14.436.0-FUI-2489.4",
81
- "@genesislcap/webpack-builder": "14.436.0-FUI-2489.4"
78
+ "@genesislcap/genx": "14.436.0-FUI-2489.6",
79
+ "@genesislcap/rollup-builder": "14.436.0-FUI-2489.6",
80
+ "@genesislcap/ts-builder": "14.436.0-FUI-2489.6",
81
+ "@genesislcap/uvu-playwright-builder": "14.436.0-FUI-2489.6",
82
+ "@genesislcap/vite-builder": "14.436.0-FUI-2489.6",
83
+ "@genesislcap/webpack-builder": "14.436.0-FUI-2489.6"
82
84
  },
83
85
  "dependencies": {
84
- "@genesislcap/foundation-comms": "14.436.0-FUI-2489.4",
85
- "@genesislcap/foundation-logger": "14.436.0-FUI-2489.4",
86
- "@genesislcap/foundation-ui": "14.436.0-FUI-2489.4",
87
- "@genesislcap/foundation-utils": "14.436.0-FUI-2489.4",
86
+ "@genesislcap/foundation-comms": "14.436.0-FUI-2489.6",
87
+ "@genesislcap/foundation-logger": "14.436.0-FUI-2489.6",
88
+ "@genesislcap/foundation-ui": "14.436.0-FUI-2489.6",
89
+ "@genesislcap/foundation-utils": "14.436.0-FUI-2489.6",
88
90
  "@microsoft/fast-colors": "5.3.1",
89
91
  "@microsoft/fast-components": "2.30.6",
90
92
  "@microsoft/fast-element": "1.14.0",
@@ -111,5 +113,5 @@
111
113
  "require": "./dist/react.cjs"
112
114
  }
113
115
  },
114
- "gitHead": "da93aba26e270c9d541c8b65a06cdb6e36c88f21"
116
+ "gitHead": "d552974ef00bc3a499c6f90043f3ae49a5d2d37c"
115
117
  }