@dotss/tictoccroc 0.0.8 → 0.0.9

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.
Files changed (46) hide show
  1. package/dist/index.mjs +40 -38
  2. package/dist/shared/components/Carousel/index.d.ts +2 -2
  3. package/dist/shared/components/Masonry/MasonryBlock/MasonryBlock.d.ts +1 -1
  4. package/dist/shared/components/Masonry/MasonryBlock/MasonryBlock.mjs +59 -53
  5. package/dist/shared/components/Roller/Roller.mjs +5 -5
  6. package/dist/shared/components/Scheduler/Scheduler.mjs +15 -16
  7. package/dist/teacher/profile/components/AbilityCollection/AbilityBadge/AbilityBadge.mjs +21 -21
  8. package/dist/teacher/profile/components/ActivityGallery/ActivityGalleryItem/ActivityGalleryItem.mjs +12 -12
  9. package/dist/teacher/profile/components/CertificateSection/CertificateItem/CertificateItem.d.ts +11 -0
  10. package/dist/teacher/profile/components/{CertificationSection/CertificationItem/CertificationItem.mjs → CertificateSection/CertificateItem/CertificateItem.mjs} +5 -11
  11. package/dist/teacher/profile/components/CertificateSection/CertificateItem/index.d.ts +3 -0
  12. package/dist/teacher/profile/components/CertificateSection/CertificateItem/index.mjs +4 -0
  13. package/dist/teacher/profile/components/CertificateSection/CertificateSection.d.ts +9 -0
  14. package/dist/teacher/profile/components/{CertificationSection/CertificationSection.mjs → CertificateSection/CertificateSection.mjs} +28 -28
  15. package/dist/teacher/profile/components/CertificateSection/index.d.ts +4 -0
  16. package/dist/teacher/profile/components/CertificateSection/index.mjs +6 -0
  17. package/dist/teacher/profile/components/ClassNotesSection/ClassNote/ClassNote.d.ts +9 -0
  18. package/dist/teacher/profile/components/{LessonNotesSection/LessonNote/LessonNote.mjs → ClassNotesSection/ClassNote/ClassNote.mjs} +15 -15
  19. package/dist/teacher/profile/components/ClassNotesSection/ClassNote/index.d.ts +3 -0
  20. package/dist/teacher/profile/components/ClassNotesSection/ClassNote/index.mjs +4 -0
  21. package/dist/teacher/profile/components/ClassNotesSection/ClassNotesSection.d.ts +7 -0
  22. package/dist/teacher/profile/components/{LessonNotesSection/LessonNotesSection.mjs → ClassNotesSection/ClassNotesSection.mjs} +3 -3
  23. package/dist/teacher/profile/components/ClassNotesSection/index.d.ts +4 -0
  24. package/dist/teacher/profile/components/ClassNotesSection/index.mjs +6 -0
  25. package/dist/teacher/profile/components/ParentReviewSection/ParentReviewCard/ParentReviewCard.mjs +1 -1
  26. package/dist/teacher/profile/components/ParentReviewSection/index.d.ts +2 -1
  27. package/dist/teacher/profile/components/ParentReviewSection/index.mjs +5 -3
  28. package/dist/teacher/profile/components/ProfileSummary/ProfileSummary.mjs +26 -22
  29. package/dist/teacher/profile/components/StatBadgeCollection/StatBadgeCollection.mjs +1 -1
  30. package/dist/teacher/profile/components/index.d.ts +4 -4
  31. package/dist/teacher/profile/components/index.mjs +20 -18
  32. package/package.json +2 -2
  33. package/dist/teacher/profile/components/CertificationSection/CertificationItem/CertificationItem.d.ts +0 -11
  34. package/dist/teacher/profile/components/CertificationSection/CertificationItem/index.d.ts +0 -3
  35. package/dist/teacher/profile/components/CertificationSection/CertificationItem/index.mjs +0 -4
  36. package/dist/teacher/profile/components/CertificationSection/CertificationSection.d.ts +0 -9
  37. package/dist/teacher/profile/components/CertificationSection/index.d.ts +0 -4
  38. package/dist/teacher/profile/components/CertificationSection/index.mjs +0 -6
  39. package/dist/teacher/profile/components/LessonNotesSection/LessonNote/LessonNote.d.ts +0 -9
  40. package/dist/teacher/profile/components/LessonNotesSection/LessonNote/index.d.ts +0 -3
  41. package/dist/teacher/profile/components/LessonNotesSection/LessonNote/index.mjs +0 -4
  42. package/dist/teacher/profile/components/LessonNotesSection/LessonNotesSection.d.ts +0 -7
  43. package/dist/teacher/profile/components/LessonNotesSection/index.d.ts +0 -4
  44. package/dist/teacher/profile/components/LessonNotesSection/index.mjs +0 -6
  45. /package/dist/teacher/profile/components/{LessonNotesSection/LessonNotesSection.utils.d.ts → ClassNotesSection/ClassNotesSection.utils.d.ts} +0 -0
  46. /package/dist/teacher/profile/components/{LessonNotesSection/LessonNotesSection.utils.mjs → ClassNotesSection/ClassNotesSection.utils.mjs} +0 -0
@@ -11,7 +11,7 @@ function p({
11
11
  tag: "section",
12
12
  flexDirection: "column",
13
13
  gap: 1,
14
- "aria-label": "째깍악어 돌봄 통계 배지 안내",
14
+ "aria-label": "돌봄 통계 배지 안내",
15
15
  ...n,
16
16
  children: [
17
17
  /* @__PURE__ */ e(a, { alignItems: "center", flexWrap: "wrap", gap: 1, role: "group", "aria-label": "획득한 배지", children: l }),
@@ -1,24 +1,24 @@
1
1
  export { default as ProfileSummary } from './ProfileSummary';
2
2
  export { default as StatBadgeCollection } from './StatBadgeCollection';
3
3
  export { default as ActivityGallery } from './ActivityGallery';
4
- export { default as CertificationSection } from './CertificationSection';
4
+ export { default as CertificateSection } from './CertificateSection';
5
5
  export { default as CareerSection } from './CareerSection';
6
6
  export { default as EducationSection } from './EducationSection';
7
7
  export { default as PreferredActivityKeywordGroup } from './PreferredActivityKeywordGroup';
8
8
  export { default as PreferredAgeGroup } from './PreferredAgeGroup';
9
9
  export { default as AbilityCollection } from './AbilityCollection';
10
10
  export { default as AvailableScheduleSection } from './AvailableScheduleSection';
11
- export { default as LessonNotesSection } from './LessonNotesSection';
11
+ export { default as ClassNotesSection } from './ClassNotesSection';
12
12
  export { default as ParentReviewSection } from './ParentReviewSection';
13
13
  export * from './ProfileSummary';
14
14
  export * from './StatBadgeCollection';
15
15
  export * from './ActivityGallery';
16
- export * from './CertificationSection';
16
+ export * from './CertificateSection';
17
17
  export * from './CareerSection';
18
18
  export * from './EducationSection';
19
19
  export * from './PreferredActivityKeywordGroup';
20
20
  export * from './PreferredAgeGroup';
21
21
  export * from './AbilityCollection';
22
22
  export * from './AvailableScheduleSection';
23
- export * from './LessonNotesSection';
23
+ export * from './ClassNotesSection';
24
24
  export * from './ParentReviewSection';
@@ -1,40 +1,41 @@
1
1
  import { default as r } from "./ProfileSummary/ProfileSummary.mjs";
2
2
  import { default as a } from "./StatBadgeCollection/StatBadgeCollection.mjs";
3
3
  import { default as l } from "./StatBadgeCollection/StatBadge/StatBadge.mjs";
4
- import { default as d } from "./ActivityGallery/ActivityGallery.mjs";
4
+ import { default as i } from "./ActivityGallery/ActivityGallery.mjs";
5
5
  import { default as s } from "./ActivityGallery/ActivityGalleryItem/ActivityGalleryItem.mjs";
6
- import { default as p } from "./CertificationSection/CertificationSection.mjs";
7
- import { default as c } from "./CertificationSection/CertificationItem/CertificationItem.mjs";
6
+ import { default as p } from "./CertificateSection/CertificateSection.mjs";
7
+ import { default as c } from "./CertificateSection/CertificateItem/CertificateItem.mjs";
8
8
  import { default as y } from "./CareerSection/CareerSection.mjs";
9
- import { default as A } from "./CareerSection/CareerItem/CareerItem.mjs";
9
+ import { default as S } from "./CareerSection/CareerItem/CareerItem.mjs";
10
10
  import { default as g } from "./EducationSection/EducationSection.mjs";
11
11
  import { default as P } from "./EducationSection/EducationItem/EducationItem.mjs";
12
12
  import { default as w } from "./PreferredActivityKeywordGroup/PreferredActivityKeywordGroup.mjs";
13
13
  import { default as I } from "./PreferredAgeGroup/PreferredAgeGroup.mjs";
14
- import { getPreferredAgeKeywords as E } from "./PreferredAgeGroup/PreferredAgeGroup.utils.mjs";
15
- import { default as L } from "./AbilityCollection/AbilityCollection.mjs";
14
+ import { getPreferredAgeKeywords as h } from "./PreferredAgeGroup/PreferredAgeGroup.utils.mjs";
15
+ import { default as K } from "./AbilityCollection/AbilityCollection.mjs";
16
16
  import { default as R } from "./AbilityCollection/AbilityBadge/AbilityBadge.mjs";
17
17
  import { getAbilityCollection as j } from "./AbilityCollection/AbilityCollection.utils.mjs";
18
18
  import { default as q } from "./AvailableScheduleSection/AvailableScheduleSection.mjs";
19
- import { default as D } from "./LessonNotesSection/LessonNotesSection.mjs";
20
- import { default as H } from "./LessonNotesSection/LessonNote/LessonNote.mjs";
19
+ import { default as D } from "./ClassNotesSection/ClassNotesSection.mjs";
20
+ import { default as H } from "./ClassNotesSection/ClassNote/ClassNote.mjs";
21
21
  import { default as M } from "./ParentReviewSection/ParentReviewSection.mjs";
22
- import { default as Q } from "./ParentReviewSection/ParentReviewCard/ParentReviewCard.mjs";
22
+ import { getChildLabel as Q } from "./ParentReviewSection/ParentReviewSection.utils.mjs";
23
+ import { default as U } from "./ParentReviewSection/ParentReviewCard/ParentReviewCard.mjs";
23
24
  export {
24
25
  R as AbilityBadge,
25
- L as AbilityCollection,
26
- d as ActivityGallery,
26
+ K as AbilityCollection,
27
+ i as ActivityGallery,
27
28
  s as ActivityGalleryItem,
28
29
  q as AvailableScheduleSection,
29
- A as CareerItem,
30
+ S as CareerItem,
30
31
  y as CareerSection,
31
- c as CertificationItem,
32
- p as CertificationSection,
32
+ c as CertificateItem,
33
+ p as CertificateSection,
34
+ H as ClassNote,
35
+ D as ClassNotesSection,
33
36
  P as EducationItem,
34
37
  g as EducationSection,
35
- H as LessonNote,
36
- D as LessonNotesSection,
37
- Q as ParentReviewCard,
38
+ U as ParentReviewCard,
38
39
  M as ParentReviewSection,
39
40
  w as PreferredActivityKeywordGroup,
40
41
  I as PreferredAgeGroup,
@@ -42,5 +43,6 @@ export {
42
43
  l as StatBadge,
43
44
  a as StatBadgeCollection,
44
45
  j as getAbilityCollection,
45
- E as getPreferredAgeKeywords
46
+ Q as getChildLabel,
47
+ h as getPreferredAgeKeywords
46
48
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dotss/tictoccroc",
3
3
  "type": "module",
4
- "version": "0.0.8",
4
+ "version": "0.0.9",
5
5
  "description": "Tictoccroc shared components, hooks, utils, and APIs for Dotss",
6
6
  "main": "./dist/index.mjs",
7
7
  "module": "./dist/index.mjs",
@@ -86,7 +86,7 @@
86
86
  "vitest": "^1.6.0"
87
87
  },
88
88
  "peerDependencies": {
89
- "@dotss/ui": "^0.0.10",
89
+ "@dotss/ui": ">=0.0.1 || ^1.0.0",
90
90
  "@emotion/react": "^11.14.0",
91
91
  "@emotion/styled": "^11.14.0",
92
92
  "dayjs": "^1.11.13",
@@ -1,11 +0,0 @@
1
- import { FlexboxProps } from 'node_modules/@dotss/ui/Flexbox/Flexbox';
2
- export interface CertificationItemProps extends Omit<FlexboxProps, 'id'> {
3
- name: string;
4
- acquisitionDate: string;
5
- status: 'VERIFIED' | 'PENDING' | 'REJECTED' | 'DELETED';
6
- id: string | number;
7
- regDatetime: string;
8
- priority: number;
9
- }
10
- declare function CertificationItem({ name, acquisitionDate, status, id, ...props }: CertificationItemProps): import("@emotion/react/jsx-runtime").JSX.Element;
11
- export default CertificationItem;
@@ -1,3 +0,0 @@
1
- import { default as CertificationItem, CertificationItemProps } from './CertificationItem';
2
- export type { CertificationItemProps };
3
- export default CertificationItem;
@@ -1,4 +0,0 @@
1
- import e from "./CertificationItem.mjs";
2
- export {
3
- e as default
4
- };
@@ -1,9 +0,0 @@
1
- import { ReactNode } from 'react';
2
- import { FlexboxProps } from 'node_modules/@dotss/ui/Flexbox/Flexbox';
3
- export interface CertificationSectionProps extends FlexboxProps {
4
- action?: ReactNode;
5
- showTooltip?: boolean;
6
- enableToggle?: boolean;
7
- }
8
- declare function CertificationList({ children, action, showTooltip, enableToggle, ...props }: CertificationSectionProps): import("@emotion/react/jsx-runtime").JSX.Element;
9
- export default CertificationList;
@@ -1,4 +0,0 @@
1
- import { default as CertificationSection, CertificationSectionProps } from './CertificationSection';
2
- export type { CertificationSectionProps };
3
- export { default as CertificationItem, type CertificationItemProps } from './CertificationItem';
4
- export default CertificationSection;
@@ -1,6 +0,0 @@
1
- import i from "./CertificationSection.mjs";
2
- import { default as r } from "./CertificationItem/CertificationItem.mjs";
3
- export {
4
- r as CertificationItem,
5
- i as default
6
- };
@@ -1,9 +0,0 @@
1
- import { RollerBlockProps } from '../../../../../shared/components/Roller/RollerBlock';
2
- export interface LessonNoteProps extends RollerBlockProps {
3
- content: string;
4
- keywords: string[];
5
- regDatetime: string;
6
- childrenInfo: Record<'childBirth' | 'childGender', string>[];
7
- }
8
- declare function LessonNote({ content, keywords, regDatetime, childrenInfo, ...props }: LessonNoteProps): import("@emotion/react/jsx-runtime").JSX.Element;
9
- export default LessonNote;
@@ -1,3 +0,0 @@
1
- import { default as LessonNote, LessonNoteProps } from './LessonNote';
2
- export type { LessonNoteProps };
3
- export default LessonNote;
@@ -1,4 +0,0 @@
1
- import e from "./LessonNote.mjs";
2
- export {
3
- e as default
4
- };
@@ -1,7 +0,0 @@
1
- import { FlexboxProps } from 'node_modules/@dotss/ui/Flexbox/Flexbox';
2
- export interface LessonNotesSectionProps extends FlexboxProps {
3
- totalCount: number;
4
- onClickViewAll?: () => void;
5
- }
6
- declare const LessonNotesSection: import('react').ForwardRefExoticComponent<Omit<LessonNotesSectionProps, "ref"> & import('react').RefAttributes<HTMLDivElement>>;
7
- export default LessonNotesSection;
@@ -1,4 +0,0 @@
1
- import { default as LessonNotesSection, LessonNotesSectionProps } from './LessonNotesSection';
2
- export type { LessonNotesSectionProps };
3
- export { default as LessonNote, type LessonNoteProps } from './LessonNote';
4
- export default LessonNotesSection;
@@ -1,6 +0,0 @@
1
- import e from "./LessonNotesSection.mjs";
2
- import { default as r } from "./LessonNote/LessonNote.mjs";
3
- export {
4
- r as LessonNote,
5
- e as default
6
- };