@genesislcap/rapid-design-system 15.27.1 → 15.28.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.
@@ -27655,56 +27655,6 @@
27655
27655
  }
27656
27656
  ]
27657
27657
  },
27658
- {
27659
- "kind": "javascript-module",
27660
- "path": "src/router/index.ts",
27661
- "declarations": [],
27662
- "exports": [
27663
- {
27664
- "kind": "js",
27665
- "name": "*",
27666
- "declaration": {
27667
- "name": "*",
27668
- "package": "./router"
27669
- }
27670
- }
27671
- ]
27672
- },
27673
- {
27674
- "kind": "javascript-module",
27675
- "path": "src/router/router.ts",
27676
- "declarations": [
27677
- {
27678
- "kind": "class",
27679
- "description": "",
27680
- "name": "RapidRouter",
27681
- "superclass": {
27682
- "name": "<local>_undefined",
27683
- "module": "src/router/router.ts"
27684
- },
27685
- "tagName": "rapid-router",
27686
- "customElement": true
27687
- }
27688
- ],
27689
- "exports": [
27690
- {
27691
- "kind": "js",
27692
- "name": "RapidRouter",
27693
- "declaration": {
27694
- "name": "RapidRouter",
27695
- "module": "src/router/router.ts"
27696
- }
27697
- },
27698
- {
27699
- "kind": "custom-element-definition",
27700
- "name": "rapid-router",
27701
- "declaration": {
27702
- "name": "RapidRouter",
27703
- "module": "src/router/router.ts"
27704
- }
27705
- }
27706
- ]
27707
- },
27708
27658
  {
27709
27659
  "kind": "javascript-module",
27710
27660
  "path": "src/scheduler/index.ts",
@@ -28056,6 +28006,56 @@
28056
28006
  }
28057
28007
  ]
28058
28008
  },
28009
+ {
28010
+ "kind": "javascript-module",
28011
+ "path": "src/router/index.ts",
28012
+ "declarations": [],
28013
+ "exports": [
28014
+ {
28015
+ "kind": "js",
28016
+ "name": "*",
28017
+ "declaration": {
28018
+ "name": "*",
28019
+ "package": "./router"
28020
+ }
28021
+ }
28022
+ ]
28023
+ },
28024
+ {
28025
+ "kind": "javascript-module",
28026
+ "path": "src/router/router.ts",
28027
+ "declarations": [
28028
+ {
28029
+ "kind": "class",
28030
+ "description": "",
28031
+ "name": "RapidRouter",
28032
+ "superclass": {
28033
+ "name": "<local>_undefined",
28034
+ "module": "src/router/router.ts"
28035
+ },
28036
+ "tagName": "rapid-router",
28037
+ "customElement": true
28038
+ }
28039
+ ],
28040
+ "exports": [
28041
+ {
28042
+ "kind": "js",
28043
+ "name": "RapidRouter",
28044
+ "declaration": {
28045
+ "name": "RapidRouter",
28046
+ "module": "src/router/router.ts"
28047
+ }
28048
+ },
28049
+ {
28050
+ "kind": "custom-element-definition",
28051
+ "name": "rapid-router",
28052
+ "declaration": {
28053
+ "name": "RapidRouter",
28054
+ "module": "src/router/router.ts"
28055
+ }
28056
+ }
28057
+ ]
28058
+ },
28059
28059
  {
28060
28060
  "kind": "javascript-module",
28061
28061
  "path": "src/scheduler-cron-builder/index.ts",
@@ -613,23 +613,23 @@ export declare const RadioGroup: React.ForwardRefExoticComponent<
613
613
  >;
614
614
  export type RadioGroupRef = RadioGroupWC;
615
615
 
616
- export declare const RapidRouter: React.ForwardRefExoticComponent<
616
+ export declare const Scheduler: React.ForwardRefExoticComponent<
617
617
  React.PropsWithChildren<
618
- Omit<PublicOf<RapidRouterWC>, 'children' | 'style'> &
618
+ Omit<PublicOf<SchedulerWC>, 'children' | 'style'> &
619
619
  HTMLWCProps & {
620
620
  }
621
- > & React.RefAttributes<RapidRouterWC>
621
+ > & React.RefAttributes<SchedulerWC>
622
622
  >;
623
- export type RapidRouterRef = RapidRouterWC;
623
+ export type SchedulerRef = SchedulerWC;
624
624
 
625
- export declare const Scheduler: React.ForwardRefExoticComponent<
625
+ export declare const RapidRouter: React.ForwardRefExoticComponent<
626
626
  React.PropsWithChildren<
627
- Omit<PublicOf<SchedulerWC>, 'children' | 'style'> &
627
+ Omit<PublicOf<RapidRouterWC>, 'children' | 'style'> &
628
628
  HTMLWCProps & {
629
629
  }
630
- > & React.RefAttributes<SchedulerWC>
630
+ > & React.RefAttributes<RapidRouterWC>
631
631
  >;
632
- export type SchedulerRef = SchedulerWC;
632
+ export type RapidRouterRef = RapidRouterWC;
633
633
 
634
634
  export declare const SchedulerCronBuilder: React.ForwardRefExoticComponent<
635
635
  React.PropsWithChildren<
package/dist/react.cjs CHANGED
@@ -678,14 +678,14 @@ const RadioGroup = React.forwardRef(function RadioGroup(props, ref) {
678
678
  return React.createElement(customElements.getName(RadioGroupWC) ?? '%%prefix%%-radio-group', { ...rest, ref }, children);
679
679
  });
680
680
 
681
- const RapidRouter = React.forwardRef(function RapidRouter(props, ref) {
681
+ const Scheduler = React.forwardRef(function Scheduler(props, ref) {
682
682
  const { children, ...rest } = props;
683
- return React.createElement(customElements.getName(RapidRouterWC) ?? 'rapid-router', { ...rest, ref }, children);
683
+ return React.createElement(customElements.getName(SchedulerWC) ?? '%%prefix%%-scheduler', { ...rest, ref }, children);
684
684
  });
685
685
 
686
- const Scheduler = React.forwardRef(function Scheduler(props, ref) {
686
+ const RapidRouter = React.forwardRef(function RapidRouter(props, ref) {
687
687
  const { children, ...rest } = props;
688
- return React.createElement(customElements.getName(SchedulerWC) ?? '%%prefix%%-scheduler', { ...rest, ref }, children);
688
+ return React.createElement(customElements.getName(RapidRouterWC) ?? 'rapid-router', { ...rest, ref }, children);
689
689
  });
690
690
 
691
691
  const SchedulerCronBuilder = React.forwardRef(function SchedulerCronBuilder(props, ref) {
@@ -1049,8 +1049,8 @@ module.exports = {
1049
1049
  ProgressRing,
1050
1050
  Radio,
1051
1051
  RadioGroup,
1052
- RapidRouter,
1053
1052
  Scheduler,
1053
+ RapidRouter,
1054
1054
  SchedulerCronBuilder,
1055
1055
  SchedulerTimezone,
1056
1056
  SearchBarCombobox,
package/dist/react.mjs CHANGED
@@ -676,14 +676,14 @@ export const RadioGroup = React.forwardRef(function RadioGroup(props, ref) {
676
676
  return React.createElement(customElements.getName(RadioGroupWC) ?? '%%prefix%%-radio-group', { ...rest, ref }, children);
677
677
  });
678
678
 
679
- export const RapidRouter = React.forwardRef(function RapidRouter(props, ref) {
679
+ export const Scheduler = React.forwardRef(function Scheduler(props, ref) {
680
680
  const { children, ...rest } = props;
681
- return React.createElement(customElements.getName(RapidRouterWC) ?? 'rapid-router', { ...rest, ref }, children);
681
+ return React.createElement(customElements.getName(SchedulerWC) ?? '%%prefix%%-scheduler', { ...rest, ref }, children);
682
682
  });
683
683
 
684
- export const Scheduler = React.forwardRef(function Scheduler(props, ref) {
684
+ export const RapidRouter = React.forwardRef(function RapidRouter(props, ref) {
685
685
  const { children, ...rest } = props;
686
- return React.createElement(customElements.getName(SchedulerWC) ?? '%%prefix%%-scheduler', { ...rest, ref }, children);
686
+ return React.createElement(customElements.getName(RapidRouterWC) ?? 'rapid-router', { ...rest, ref }, children);
687
687
  });
688
688
 
689
689
  export const SchedulerCronBuilder = React.forwardRef(function SchedulerCronBuilder(props, ref) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/rapid-design-system",
3
3
  "description": "Rapid Design System",
4
- "version": "15.27.1",
4
+ "version": "15.28.1",
5
5
  "sideEffects": false,
6
6
  "license": "SEE LICENSE IN license.txt",
7
7
  "main": "dist/esm/index.js",
@@ -40,13 +40,13 @@
40
40
  },
41
41
  "devDependencies": {
42
42
  "@genesiscommunitysuccess/analyzer-import-alias-plugin": "^5.0.3",
43
- "@genesislcap/foundation-testing": "15.27.1",
44
- "@genesislcap/genx": "15.27.1",
45
- "@genesislcap/rollup-builder": "15.27.1",
46
- "@genesislcap/ts-builder": "15.27.1",
47
- "@genesislcap/uvu-playwright-builder": "15.27.1",
48
- "@genesislcap/vite-builder": "15.27.1",
49
- "@genesislcap/webpack-builder": "15.27.1",
43
+ "@genesislcap/foundation-testing": "15.28.1",
44
+ "@genesislcap/genx": "15.28.1",
45
+ "@genesislcap/rollup-builder": "15.28.1",
46
+ "@genesislcap/ts-builder": "15.28.1",
47
+ "@genesislcap/uvu-playwright-builder": "15.28.1",
48
+ "@genesislcap/vite-builder": "15.28.1",
49
+ "@genesislcap/webpack-builder": "15.28.1",
50
50
  "flexlayout-react": "^0.10.8"
51
51
  },
52
52
  "peerDependencies": {
@@ -58,9 +58,9 @@
58
58
  }
59
59
  },
60
60
  "dependencies": {
61
- "@genesislcap/foundation-logger": "15.27.1",
62
- "@genesislcap/foundation-ui": "15.27.1",
63
- "@genesislcap/foundation-utils": "15.27.1",
61
+ "@genesislcap/foundation-logger": "15.28.1",
62
+ "@genesislcap/foundation-ui": "15.28.1",
63
+ "@genesislcap/foundation-utils": "15.28.1",
64
64
  "@microsoft/fast-colors": "5.3.1",
65
65
  "@microsoft/fast-components": "2.30.6",
66
66
  "@microsoft/fast-element": "1.14.0",