@4alldigital/foundation-ui--gamma 1.73.1 → 1.74.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.
@@ -0,0 +1,8 @@
1
+ import { CalendarProps } from './Calendar.types';
2
+ import 'react-day-picker/dist/style.css';
3
+ declare const Calendar: {
4
+ ({ testID, className, classNames, selected, onSelect, datesWithContent, disabled, showOutsideDays, ...props }: CalendarProps): import("react/jsx-runtime").JSX.Element;
5
+ displayName: string;
6
+ };
7
+ export default Calendar;
8
+ export type { CalendarProps };
@@ -0,0 +1,9 @@
1
+ import { DayPickerProps, Matcher } from 'react-day-picker';
2
+ export interface CalendarProps extends Omit<DayPickerProps, 'mode'> {
3
+ testID?: string;
4
+ className?: string;
5
+ selected?: Date;
6
+ onSelect?: (date: Date | undefined) => void;
7
+ datesWithContent?: Date[];
8
+ disabled?: Matcher | Matcher[];
9
+ }
@@ -0,0 +1,2 @@
1
+ export { default } from './Calendar';
2
+ export type { CalendarProps } from './Calendar.types';
@@ -0,0 +1,12 @@
1
+ import { CollapsibleRootProps, CollapsibleTriggerProps, CollapsibleContentProps } from './Collapsible.types';
2
+ declare const CollapsibleRoot: import("react").ForwardRefExoticComponent<CollapsibleRootProps & import("react").RefAttributes<HTMLDivElement>>;
3
+ declare const CollapsibleTrigger: import("react").ForwardRefExoticComponent<CollapsibleTriggerProps & import("react").RefAttributes<HTMLButtonElement>>;
4
+ declare const CollapsibleContent: import("react").ForwardRefExoticComponent<CollapsibleContentProps & import("react").RefAttributes<HTMLDivElement>>;
5
+ declare const Collapsible: {
6
+ Root: import("react").ForwardRefExoticComponent<CollapsibleRootProps & import("react").RefAttributes<HTMLDivElement>>;
7
+ Trigger: import("react").ForwardRefExoticComponent<CollapsibleTriggerProps & import("react").RefAttributes<HTMLButtonElement>>;
8
+ Content: import("react").ForwardRefExoticComponent<CollapsibleContentProps & import("react").RefAttributes<HTMLDivElement>>;
9
+ };
10
+ export default Collapsible;
11
+ export { CollapsibleRoot, CollapsibleTrigger, CollapsibleContent };
12
+ export type { CollapsibleRootProps, CollapsibleTriggerProps, CollapsibleContentProps };
@@ -0,0 +1,11 @@
1
+ import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
2
+ export interface CollapsibleRootProps extends CollapsiblePrimitive.CollapsibleProps {
3
+ testID?: string;
4
+ className?: string;
5
+ }
6
+ export interface CollapsibleTriggerProps extends CollapsiblePrimitive.CollapsibleTriggerProps {
7
+ className?: string;
8
+ }
9
+ export interface CollapsibleContentProps extends CollapsiblePrimitive.CollapsibleContentProps {
10
+ className?: string;
11
+ }
@@ -0,0 +1,3 @@
1
+ export { default } from './Collapsible';
2
+ export { CollapsibleRoot, CollapsibleTrigger, CollapsibleContent } from './Collapsible';
3
+ export type { CollapsibleRootProps, CollapsibleTriggerProps, CollapsibleContentProps } from './Collapsible.types';
@@ -1,6 +1,6 @@
1
1
  import { Props } from './Schedule.types';
2
2
  declare const Schedule: {
3
- ({ testID, raised, scheduleItems, hasAccess }: Props): import("react/jsx-runtime").JSX.Element;
3
+ ({ testID, scheduleItems, hasAccess }: Props): import("react/jsx-runtime").JSX.Element;
4
4
  displayName: string;
5
5
  };
6
6
  export default Schedule;
@@ -1,12 +1,3 @@
1
- export interface WeekDay {
2
- date: Date;
3
- isToday: boolean;
4
- }
5
- type WeekdayLong = 'Sunday' | 'Monday' | 'Tuesday' | 'Wednesday' | 'Thursday' | 'Friday' | 'Saturday';
6
- export interface ScheduleItem {
7
- day: WeekdayLong;
8
- component: any;
9
- }
10
1
  interface Schedule {
11
2
  uuid: string;
12
3
  created: string;
@@ -66,7 +57,6 @@ interface Schedule {
66
57
  }
67
58
  export interface Props {
68
59
  testID?: string;
69
- raised?: boolean;
70
60
  scheduleItems?: Schedule;
71
61
  hasAccess?: boolean;
72
62
  }
@@ -3,6 +3,8 @@ export { default as Blockquote } from './Blockquote';
3
3
  export { default as Button } from './Button';
4
4
  export { default as Checkbox } from './Checkbox';
5
5
  export { default as Chip } from './Chip';
6
+ export { default as Calendar } from './Calendar';
7
+ export { default as Collapsible } from './Collapsible';
6
8
  export { default as Copy } from './Copy';
7
9
  export { default as FileUpload } from './FileUpload';
8
10
  export { default as Heading } from './Heading';
@@ -110,6 +112,8 @@ export type { Props as HrProps } from './Hr/Hr.types';
110
112
  export type { Props as FooterProps } from './Footer/Footer.types';
111
113
  export type { Props as VideoProps } from './Video/Video.types';
112
114
  export type { Props as ChipProps } from './Chip/Chip.types';
115
+ export type { CalendarProps } from './Calendar/Calendar.types';
116
+ export type { CollapsibleRootProps, CollapsibleTriggerProps, CollapsibleContentProps } from './Collapsible/Collapsible.types';
113
117
  export type { Props as AvatarProps } from './Avatar/Avatar.types';
114
118
  export type { Props as OTPInputProps } from './OTPInput/OTPInput.types';
115
119
  export type { Props as HeroProps } from './Hero/Hero.types';
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@4alldigital/foundation-ui--gamma",
3
- "version": "1.73.1",
3
+ "version": "1.74.2",
4
4
  "description": "Foundation UI Component library with GAMMA theme. ",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
7
7
  "jsnext:main": "dist/index.es.js",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+https://github.com/4AllDigital/foundation-ui.git",
10
+ "url": "git+https://github.com/tech-stuff-dev/foundation-ui.git",
11
11
  "directory": "packages/gamma"
12
12
  },
13
13
  "author": "Joe Mewes",
@@ -39,7 +39,7 @@
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "bb77831cc38d4ce809cbd35d78e9c04da18d1a8e",
42
+ "gitHead": "c4d6db09ecd92567da84db1c9700ebadb0244fcd",
43
43
  "dependencies": {
44
44
  "@elastic/datemath": "^5.0.3",
45
45
  "@elastic/react-search-ui": "^1.24.2",
@@ -58,13 +58,13 @@
58
58
  "date-fns": "^4.1.0",
59
59
  "date-input-polyfill": "^2.14.0",
60
60
  "filter-invalid-dom-props": "^3.0.1",
61
- "framer-motion": "^12.23.22",
61
+ "framer-motion": "^12.23.24",
62
62
  "he": "^1.2.0",
63
63
  "history": "^5.3.0",
64
- "html-react-parser": "^5.2.6",
64
+ "html-react-parser": "^5.2.7",
65
65
  "iso8601-duration": "^2.1.3",
66
- "libphonenumber-js": "^1.12.23",
67
- "next": "^15.5.4",
66
+ "libphonenumber-js": "^1.12.24",
67
+ "next": "^15.5.6",
68
68
  "rc-pagination": "^5.1.0",
69
69
  "react": "19.1.0",
70
70
  "react-burger-menu": "^3.1.0",
@@ -73,7 +73,7 @@
73
73
  "react-content-loader": "^7.1.1",
74
74
  "react-device-detect": "^2.2.3",
75
75
  "react-dom": "19.1.0",
76
- "react-hook-form": "^7.64.0",
76
+ "react-hook-form": "^7.65.0",
77
77
  "react-hover-video-player": "^10.0.2",
78
78
  "react-modal": "^3.16.3",
79
79
  "react-otp-input": "^3.1.1",
@@ -89,9 +89,9 @@
89
89
  "video.js": "8.23.4"
90
90
  },
91
91
  "bugs": {
92
- "url": "https://github.com/4AllDigital/foundation-ui/issues"
92
+ "url": "https://github.com/tech-stuff-dev/foundation-ui/issues"
93
93
  },
94
- "homepage": "https://github.com/4AllDigital/foundation-ui#readme",
94
+ "homepage": "https://github.com/tech-stuff-dev/foundation-ui#readme",
95
95
  "devDependencies": {
96
96
  "@types/he": "^1.2.3",
97
97
  "@types/jquery": "^3.5.33",