@genesislcap/foundation-zero 14.470.0 → 14.472.0-GENC-1388.1
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 +390 -390
- package/dist/dts/react.d.ts +16 -16
- package/dist/react.cjs +10 -10
- package/dist/react.mjs +8 -8
- package/package.json +12 -12
package/dist/dts/react.d.ts
CHANGED
|
@@ -647,23 +647,23 @@ export declare const Optgroup: React.ForwardRefExoticComponent<
|
|
|
647
647
|
>;
|
|
648
648
|
export type OptgroupRef = OptgroupWC;
|
|
649
649
|
|
|
650
|
-
export declare const
|
|
650
|
+
export declare const ProgressRing: React.ForwardRefExoticComponent<
|
|
651
651
|
React.PropsWithChildren<
|
|
652
|
-
Omit<PublicOf<
|
|
652
|
+
Omit<PublicOf<ProgressRingWC>, 'children' | 'style'> &
|
|
653
653
|
HTMLWCProps & {
|
|
654
654
|
}
|
|
655
|
-
> & React.RefAttributes<
|
|
655
|
+
> & React.RefAttributes<ProgressRingWC>
|
|
656
656
|
>;
|
|
657
|
-
export type
|
|
657
|
+
export type ProgressRingRef = ProgressRingWC;
|
|
658
658
|
|
|
659
|
-
export declare const
|
|
659
|
+
export declare const Progress: React.ForwardRefExoticComponent<
|
|
660
660
|
React.PropsWithChildren<
|
|
661
|
-
Omit<PublicOf<
|
|
661
|
+
Omit<PublicOf<ProgressWC>, 'children' | 'style'> &
|
|
662
662
|
HTMLWCProps & {
|
|
663
663
|
}
|
|
664
|
-
> & React.RefAttributes<
|
|
664
|
+
> & React.RefAttributes<ProgressWC>
|
|
665
665
|
>;
|
|
666
|
-
export type
|
|
666
|
+
export type ProgressRef = ProgressWC;
|
|
667
667
|
|
|
668
668
|
export declare const Radio: React.ForwardRefExoticComponent<
|
|
669
669
|
React.PropsWithChildren<
|
|
@@ -692,23 +692,23 @@ export declare const Scheduler: React.ForwardRefExoticComponent<
|
|
|
692
692
|
>;
|
|
693
693
|
export type SchedulerRef = SchedulerWC;
|
|
694
694
|
|
|
695
|
-
export declare const
|
|
695
|
+
export declare const SchedulerCronBuilder: React.ForwardRefExoticComponent<
|
|
696
696
|
React.PropsWithChildren<
|
|
697
|
-
Omit<PublicOf<
|
|
697
|
+
Omit<PublicOf<SchedulerCronBuilderWC>, 'children' | 'style'> &
|
|
698
698
|
HTMLWCProps & {
|
|
699
699
|
}
|
|
700
|
-
> & React.RefAttributes<
|
|
700
|
+
> & React.RefAttributes<SchedulerCronBuilderWC>
|
|
701
701
|
>;
|
|
702
|
-
export type
|
|
702
|
+
export type SchedulerCronBuilderRef = SchedulerCronBuilderWC;
|
|
703
703
|
|
|
704
|
-
export declare const
|
|
704
|
+
export declare const SchedulerTimezone: React.ForwardRefExoticComponent<
|
|
705
705
|
React.PropsWithChildren<
|
|
706
|
-
Omit<PublicOf<
|
|
706
|
+
Omit<PublicOf<SchedulerTimezoneWC>, 'children' | 'style'> &
|
|
707
707
|
HTMLWCProps & {
|
|
708
708
|
}
|
|
709
|
-
> & React.RefAttributes<
|
|
709
|
+
> & React.RefAttributes<SchedulerTimezoneWC>
|
|
710
710
|
>;
|
|
711
|
-
export type
|
|
711
|
+
export type SchedulerTimezoneRef = SchedulerTimezoneWC;
|
|
712
712
|
|
|
713
713
|
export declare const SearchBarCombobox: React.ForwardRefExoticComponent<
|
|
714
714
|
React.PropsWithChildren<
|
package/dist/react.cjs
CHANGED
|
@@ -696,14 +696,14 @@ const Optgroup = React.forwardRef(function Optgroup(props, ref) {
|
|
|
696
696
|
return React.createElement(customElements.getName(OptgroupWC) ?? '%%prefix%%-optgroup', { ...rest, ref }, children);
|
|
697
697
|
});
|
|
698
698
|
|
|
699
|
-
const
|
|
699
|
+
const ProgressRing = React.forwardRef(function ProgressRing(props, ref) {
|
|
700
700
|
const { children, ...rest } = props;
|
|
701
|
-
return React.createElement(customElements.getName(
|
|
701
|
+
return React.createElement(customElements.getName(ProgressRingWC) ?? '%%prefix%%-progress-ring', { ...rest, ref }, children);
|
|
702
702
|
});
|
|
703
703
|
|
|
704
|
-
const
|
|
704
|
+
const Progress = React.forwardRef(function Progress(props, ref) {
|
|
705
705
|
const { children, ...rest } = props;
|
|
706
|
-
return React.createElement(customElements.getName(
|
|
706
|
+
return React.createElement(customElements.getName(ProgressWC) ?? '%%prefix%%-progress', { ...rest, ref }, children);
|
|
707
707
|
});
|
|
708
708
|
|
|
709
709
|
const Radio = React.forwardRef(function Radio(props, ref) {
|
|
@@ -721,14 +721,14 @@ const Scheduler = React.forwardRef(function Scheduler(props, ref) {
|
|
|
721
721
|
return React.createElement(customElements.getName(SchedulerWC) ?? '%%prefix%%-scheduler', { ...rest, ref }, children);
|
|
722
722
|
});
|
|
723
723
|
|
|
724
|
-
const
|
|
724
|
+
const SchedulerCronBuilder = React.forwardRef(function SchedulerCronBuilder(props, ref) {
|
|
725
725
|
const { children, ...rest } = props;
|
|
726
|
-
return React.createElement(customElements.getName(
|
|
726
|
+
return React.createElement(customElements.getName(SchedulerCronBuilderWC) ?? '%%prefix%%-scheduler-cron-builder', { ...rest, ref }, children);
|
|
727
727
|
});
|
|
728
728
|
|
|
729
|
-
const
|
|
729
|
+
const SchedulerTimezone = React.forwardRef(function SchedulerTimezone(props, ref) {
|
|
730
730
|
const { children, ...rest } = props;
|
|
731
|
-
return React.createElement(customElements.getName(
|
|
731
|
+
return React.createElement(customElements.getName(SchedulerTimezoneWC) ?? '%%prefix%%-scheduler-timezone', { ...rest, ref }, children);
|
|
732
732
|
});
|
|
733
733
|
|
|
734
734
|
const SearchBarCombobox = React.forwardRef(function SearchBarCombobox(props, ref) {
|
|
@@ -1040,13 +1040,13 @@ module.exports = {
|
|
|
1040
1040
|
NotificationListener,
|
|
1041
1041
|
NumberField,
|
|
1042
1042
|
Optgroup,
|
|
1043
|
-
Progress,
|
|
1044
1043
|
ProgressRing,
|
|
1044
|
+
Progress,
|
|
1045
1045
|
Radio,
|
|
1046
1046
|
RadioGroup,
|
|
1047
1047
|
Scheduler,
|
|
1048
|
-
SchedulerTimezone,
|
|
1049
1048
|
SchedulerCronBuilder,
|
|
1049
|
+
SchedulerTimezone,
|
|
1050
1050
|
SearchBarCombobox,
|
|
1051
1051
|
SearchBar,
|
|
1052
1052
|
SectionNavigator,
|
package/dist/react.mjs
CHANGED
|
@@ -694,14 +694,14 @@ export const Optgroup = React.forwardRef(function Optgroup(props, ref) {
|
|
|
694
694
|
return React.createElement(customElements.getName(OptgroupWC) ?? '%%prefix%%-optgroup', { ...rest, ref }, children);
|
|
695
695
|
});
|
|
696
696
|
|
|
697
|
-
export const
|
|
697
|
+
export const ProgressRing = React.forwardRef(function ProgressRing(props, ref) {
|
|
698
698
|
const { children, ...rest } = props;
|
|
699
|
-
return React.createElement(customElements.getName(
|
|
699
|
+
return React.createElement(customElements.getName(ProgressRingWC) ?? '%%prefix%%-progress-ring', { ...rest, ref }, children);
|
|
700
700
|
});
|
|
701
701
|
|
|
702
|
-
export const
|
|
702
|
+
export const Progress = React.forwardRef(function Progress(props, ref) {
|
|
703
703
|
const { children, ...rest } = props;
|
|
704
|
-
return React.createElement(customElements.getName(
|
|
704
|
+
return React.createElement(customElements.getName(ProgressWC) ?? '%%prefix%%-progress', { ...rest, ref }, children);
|
|
705
705
|
});
|
|
706
706
|
|
|
707
707
|
export const Radio = React.forwardRef(function Radio(props, ref) {
|
|
@@ -719,14 +719,14 @@ export const Scheduler = React.forwardRef(function Scheduler(props, ref) {
|
|
|
719
719
|
return React.createElement(customElements.getName(SchedulerWC) ?? '%%prefix%%-scheduler', { ...rest, ref }, children);
|
|
720
720
|
});
|
|
721
721
|
|
|
722
|
-
export const
|
|
722
|
+
export const SchedulerCronBuilder = React.forwardRef(function SchedulerCronBuilder(props, ref) {
|
|
723
723
|
const { children, ...rest } = props;
|
|
724
|
-
return React.createElement(customElements.getName(
|
|
724
|
+
return React.createElement(customElements.getName(SchedulerCronBuilderWC) ?? '%%prefix%%-scheduler-cron-builder', { ...rest, ref }, children);
|
|
725
725
|
});
|
|
726
726
|
|
|
727
|
-
export const
|
|
727
|
+
export const SchedulerTimezone = React.forwardRef(function SchedulerTimezone(props, ref) {
|
|
728
728
|
const { children, ...rest } = props;
|
|
729
|
-
return React.createElement(customElements.getName(
|
|
729
|
+
return React.createElement(customElements.getName(SchedulerTimezoneWC) ?? '%%prefix%%-scheduler-timezone', { ...rest, ref }, children);
|
|
730
730
|
});
|
|
731
731
|
|
|
732
732
|
export const SearchBarCombobox = React.forwardRef(function SearchBarCombobox(props, ref) {
|
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.472.0-GENC-1388.1",
|
|
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.472.0-GENC-1388.1",
|
|
77
|
+
"@genesislcap/rollup-builder": "14.472.0-GENC-1388.1",
|
|
78
|
+
"@genesislcap/ts-builder": "14.472.0-GENC-1388.1",
|
|
79
|
+
"@genesislcap/uvu-playwright-builder": "14.472.0-GENC-1388.1",
|
|
80
|
+
"@genesislcap/vite-builder": "14.472.0-GENC-1388.1",
|
|
81
|
+
"@genesislcap/webpack-builder": "14.472.0-GENC-1388.1"
|
|
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.472.0-GENC-1388.1",
|
|
85
|
+
"@genesislcap/foundation-logger": "14.472.0-GENC-1388.1",
|
|
86
|
+
"@genesislcap/foundation-ui": "14.472.0-GENC-1388.1",
|
|
87
|
+
"@genesislcap/foundation-utils": "14.472.0-GENC-1388.1",
|
|
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": "d733a06000add274bedd6f35e68ef94efc211364"
|
|
115
115
|
}
|