pds-dev-kit-web 2.2.87 → 2.2.89

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 (48) hide show
  1. package/dist/src/common/assets/icons/image/index.d.ts +202 -0
  2. package/dist/src/common/assets/icons/image/index.js +205 -0
  3. package/dist/src/common/index.d.ts +1 -1
  4. package/dist/src/common/types/components.d.ts +4 -4
  5. package/dist/src/common/types/icon.d.ts +8 -3
  6. package/dist/src/common/types/icon.js +10 -0
  7. package/dist/src/desktop/components/BasicListItem/BasicListItem.d.ts +4 -4
  8. package/dist/src/desktop/components/ChatList/ChatList.d.ts +8 -8
  9. package/dist/src/desktop/components/ChatList/ChatTextField.d.ts +5 -5
  10. package/dist/src/desktop/components/ChatList/Footer.d.ts +5 -5
  11. package/dist/src/desktop/components/Chip/Chip.d.ts +2 -2
  12. package/dist/src/desktop/components/DesktopHeaderBar/DesktopHeaderBar.d.ts +2 -2
  13. package/dist/src/desktop/components/DesktopTabBar/DesktopTabBar.d.ts +2 -2
  14. package/dist/src/desktop/components/FloatingActionButton/FloatingActionButton.d.ts +2 -2
  15. package/dist/src/desktop/components/IconButton/IconButton.d.ts +2 -2
  16. package/dist/src/desktop/components/MainButton/MainButton.d.ts +2 -2
  17. package/dist/src/desktop/components/PageTitleTextGroup/CompoundButton.d.ts +2 -2
  18. package/dist/src/desktop/components/PageTitleTextGroup/PageTitleTextGroup.d.ts +2 -2
  19. package/dist/src/desktop/components/TextField/TextField.d.ts +3 -3
  20. package/dist/src/desktop/components/UploadIconButton/UploadIconButton.d.ts +2 -2
  21. package/dist/src/desktop/components/UploadMainButton/UploadMainButton.d.ts +2 -2
  22. package/dist/src/hybrid/components/Icon/Icon.d.ts +4 -3
  23. package/dist/src/hybrid/components/Icon/Icon.js +14 -4
  24. package/dist/src/mobile/components/BasicListItem/BasicListItem.d.ts +4 -4
  25. package/dist/src/mobile/components/ChatList/ChatList.d.ts +8 -8
  26. package/dist/src/mobile/components/ChatList/ChatTextField.d.ts +5 -5
  27. package/dist/src/mobile/components/ChatList/Footer.d.ts +5 -5
  28. package/dist/src/mobile/components/Chip/Chip.d.ts +2 -2
  29. package/dist/src/mobile/components/FloatingActionButton/FloatingActionButton.d.ts +2 -2
  30. package/dist/src/mobile/components/IconButton/IconButton.d.ts +2 -2
  31. package/dist/src/mobile/components/MainButton/MainButton.d.ts +2 -2
  32. package/dist/src/mobile/components/MobileHeaderBar/MobileHeaderBar.d.ts +3 -3
  33. package/dist/src/mobile/components/TextField/TextField.d.ts +3 -3
  34. package/dist/src/mobile/components/UploadIconButton/UploadIconButton.d.ts +2 -2
  35. package/dist/src/mobile/components/UploadMainButton/UploadMainButton.d.ts +2 -2
  36. package/dist/src/sub/AdminList/ToolBar/ToolBar.d.ts +4 -4
  37. package/dist/src/sub/DynamicLayout/components/YouTubeIframe/YouTubeIframe.js +7 -3
  38. package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/IconButton/IconButton.d.ts +2 -2
  39. package/dist/src/sub/DynamicLayout/components/pdsOriginal/desktop/MainButton/MainButton.d.ts +2 -2
  40. package/dist/src/sub/DynamicLayout/components/pdsOriginal/hybrid/Icon/Icon.d.ts +2 -2
  41. package/dist/src/sub/DynamicLayout/components/pdsOriginal/mobile/IconButton/IconButton.d.ts +2 -2
  42. package/dist/src/sub/DynamicLayout/components/pdsOriginal/mobile/MainButton/MainButton.d.ts +2 -2
  43. package/dist/src/sub/DynamicLayout/mock_samplePage.d.ts +1 -0
  44. package/dist/src/sub/DynamicLayout/mock_samplePage.js +996 -1
  45. package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/desktop/MembershipSectionItem.d.ts +3 -3
  46. package/dist/src/sub/DynamicLayout/sections/MembershipSection/components/mobile/MembershipSectionItem.d.ts +3 -3
  47. package/package.json +1 -1
  48. package/release-note.md +2 -2
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import type { FillIconNameKeys, LineIconNameKeys } from '../../../../../DynamicLayout/components/pdsOriginal/common';
2
+ import type { PDSIconType } from '../../../../../DynamicLayout/components/pdsOriginal/common';
3
3
  import type { TextLabelProps } from '../../../../../DynamicLayout/components/pdsOriginal/desktop/TextLabel/TextLabel';
4
4
  import type { IItemButton, IItemDescription, IItemTitle, IMembershipCardTemplate } from '../../../../../DynamicLayout/types';
5
5
  declare function MembershipSectionItem(): JSX.Element;
@@ -23,7 +23,7 @@ type IconButtonProps = {
23
23
  iconButtonBorderColor: string;
24
24
  iconButtonDisabledBackgroundColor: string;
25
25
  isDisabled?: boolean;
26
- iconName: FillIconNameKeys | LineIconNameKeys;
26
+ iconName: PDSIconType;
27
27
  state?: 'normal' | 'disabled';
28
28
  onClick?: (value?: number | string) => void;
29
29
  };
@@ -32,7 +32,7 @@ type MembershipCardProps = {
32
32
  };
33
33
  type ColorOverrideIconProps = {
34
34
  iconColor: string;
35
- iconName: FillIconNameKeys | LineIconNameKeys;
35
+ iconName: PDSIconType;
36
36
  };
37
37
  type XlargeMainButtonProps = {
38
38
  buttonTextColor?: string;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import type { FillIconNameKeys, LineIconNameKeys } from '../../../../../DynamicLayout/components/pdsOriginal/common';
2
+ import type { PDSIconType } from '../../../../../DynamicLayout/components/pdsOriginal/common';
3
3
  import type { TextLabelProps } from '../../../../../DynamicLayout/components/pdsOriginal/desktop/TextLabel/TextLabel';
4
4
  import type { IItemButton, IItemDescription, IItemTitle, IMembershipCardTemplate } from '../../../../../DynamicLayout/types';
5
5
  declare function MembershipSectionItem(): JSX.Element;
@@ -23,7 +23,7 @@ type IconButtonProps = {
23
23
  iconButtonBackgroundColor: string;
24
24
  iconButtonDisabledBackgroundColor: string;
25
25
  isDisabled?: boolean;
26
- iconName: FillIconNameKeys | LineIconNameKeys;
26
+ iconName: PDSIconType;
27
27
  state?: 'normal' | 'disabled';
28
28
  onClick?: (value?: number | string) => void;
29
29
  };
@@ -33,7 +33,7 @@ type MembershipCardProps = {
33
33
  };
34
34
  type ColorOverrideIconProps = {
35
35
  iconColor: string;
36
- iconName: FillIconNameKeys | LineIconNameKeys;
36
+ iconName: PDSIconType;
37
37
  };
38
38
  type XlargeMainButtonProps = {
39
39
  buttonTextColor?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web",
3
- "version": "2.2.87",
3
+ "version": "2.2.89",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
package/release-note.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v2.2.87]
2
+ ## [v2.2.89]
3
3
  ## daily|https://design.storybook.publ.biz/
4
4
 
5
5
  ### 업데이트 사항
6
- * [PDS-1241] UserDestopTabBarstyleTheme : content2의 컬러 이슈 해결
6
+ * [DAILY][PDS-1242] Icontype 확장