@calcom/atoms 2.9.1 → 2.10.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/booker/hooks/useOverlayCalendar.d.ts +1 -0
- package/booker/hooks/useOverlayCalendar.js +1 -0
- package/event-types/components/team-assignment/ChildrenEventTypes.d.ts +1 -0
- package/event-types/components/team-assignment/ChildrenEventTypes.js +1 -0
- package/event-types/components/team-assignment/Hosts.d.ts +1 -0
- package/event-types/components/team-assignment/Hosts.js +1 -0
- package/hooks/use-atoms-locale.d.ts +1 -0
- package/hooks/use-atoms-locale.js +1 -0
- package/hooks/useIsPlatformBookerEmbed.d.ts +1 -0
- package/hooks/useIsPlatformBookerEmbed.js +1 -0
- package/package.json +21 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../../dist/booker/hooks/use-overlay-calendar";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../../dist/booker/hooks/use-overlay-calendar.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../../../dist/event-types/components/team-assignment/children-event-types";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../../../dist/event-types/components/team-assignment/children-event-types.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../../../dist/event-types/components/team-assignment/hosts";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../../../dist/event-types/components/team-assignment/hosts.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/hooks/use-atoms-locale";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/hooks/use-atoms-locale.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/hooks/use-is-platform-booker-embed";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "../dist/hooks/use-is-platform-booker-embed.js";
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"description": "Customizable UI components to integrate scheduling into your product.",
|
|
6
6
|
"author": "Cal.com, Inc.",
|
|
7
7
|
"license": "AGPL-3.0-or-later",
|
|
8
|
-
"version": "2.
|
|
8
|
+
"version": "2.10.0",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "https://github.com/calcom/atoms",
|
|
@@ -242,6 +242,10 @@
|
|
|
242
242
|
"import": "./dist/booker/hooks/use-non-empty-schedule-days.js",
|
|
243
243
|
"types": "./dist/booker/hooks/use-non-empty-schedule-days.d.ts"
|
|
244
244
|
},
|
|
245
|
+
"./booker/hooks/useOverlayCalendar": {
|
|
246
|
+
"import": "./dist/booker/hooks/use-overlay-calendar.js",
|
|
247
|
+
"types": "./dist/booker/hooks/use-overlay-calendar.d.ts"
|
|
248
|
+
},
|
|
245
249
|
"./booker/hooks/useSkipConfirmStep": {
|
|
246
250
|
"import": "./dist/booker/hooks/use-skip-confirm-step.js",
|
|
247
251
|
"types": "./dist/booker/hooks/use-skip-confirm-step.d.ts"
|
|
@@ -358,10 +362,18 @@
|
|
|
358
362
|
"import": "./dist/event-types/components/tabs/event-recurring-tab.js",
|
|
359
363
|
"types": "./dist/event-types/components/tabs/event-recurring-tab.d.ts"
|
|
360
364
|
},
|
|
365
|
+
"./event-types/components/team-assignment/ChildrenEventTypes": {
|
|
366
|
+
"import": "./dist/event-types/components/team-assignment/children-event-types.js",
|
|
367
|
+
"types": "./dist/event-types/components/team-assignment/children-event-types.d.ts"
|
|
368
|
+
},
|
|
361
369
|
"./event-types/components/team-assignment/EventTeamAssignmentTab": {
|
|
362
370
|
"import": "./dist/event-types/components/team-assignment/event-team-assignment-tab.js",
|
|
363
371
|
"types": "./dist/event-types/components/team-assignment/event-team-assignment-tab.d.ts"
|
|
364
372
|
},
|
|
373
|
+
"./event-types/components/team-assignment/Hosts": {
|
|
374
|
+
"import": "./dist/event-types/components/team-assignment/hosts.js",
|
|
375
|
+
"types": "./dist/event-types/components/team-assignment/hosts.d.ts"
|
|
376
|
+
},
|
|
365
377
|
"./event-types/hooks/useAddVerifiedEmail": {
|
|
366
378
|
"import": "./dist/event-types/hooks/use-add-verified-email.js",
|
|
367
379
|
"types": "./dist/event-types/hooks/use-add-verified-email.d.ts"
|
|
@@ -394,10 +406,18 @@
|
|
|
394
406
|
"import": "./dist/hooks/event-types/private/use-create-event-type-form.js",
|
|
395
407
|
"types": "./dist/hooks/event-types/private/use-create-event-type-form.d.ts"
|
|
396
408
|
},
|
|
409
|
+
"./hooks/use-atoms-locale": {
|
|
410
|
+
"import": "./dist/hooks/use-atoms-locale.js",
|
|
411
|
+
"types": "./dist/hooks/use-atoms-locale.d.ts"
|
|
412
|
+
},
|
|
397
413
|
"./hooks/useIsPlatform": {
|
|
398
414
|
"import": "./dist/hooks/use-is-platform.js",
|
|
399
415
|
"types": "./dist/hooks/use-is-platform.d.ts"
|
|
400
416
|
},
|
|
417
|
+
"./hooks/useIsPlatformBookerEmbed": {
|
|
418
|
+
"import": "./dist/hooks/use-is-platform-booker-embed.js",
|
|
419
|
+
"types": "./dist/hooks/use-is-platform-booker-embed.d.ts"
|
|
420
|
+
},
|
|
401
421
|
"./hooks/useVerifyCode": {
|
|
402
422
|
"import": "./dist/hooks/use-verify-code.js",
|
|
403
423
|
"types": "./dist/hooks/use-verify-code.d.ts"
|