pds-dev-kit-web-test 0.2.42 → 0.2.43

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.
@@ -4,6 +4,7 @@ type HeadlessProps = {
4
4
  isLoading: boolean;
5
5
  isVisible: boolean;
6
6
  ref: LegacyRef<HTMLElement>;
7
+ defaultText: string;
7
8
  };
8
9
  type Props = {
9
10
  font: Font;
@@ -124,6 +124,6 @@ function GoogleFontItem(_a) {
124
124
  }
125
125
  getDefaultText();
126
126
  }, [font, isVisible, defaultText]);
127
- return children({ isLoading: isLoading, isVisible: isVisible, ref: ref });
127
+ return children({ isLoading: isLoading, isVisible: isVisible, ref: ref, defaultText: defaultText });
128
128
  }
129
129
  exports.default = GoogleFontItem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web-test",
3
- "version": "0.2.42",
3
+ "version": "0.2.43",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
package/release-note.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # pds-dev-kit-web-test Release Notes
2
- ## [v0.2.42]
2
+ ## [v0.2.43]
3
3
  ## 기준 pds-dev-kit-web 버전 @2.2.10
4
4
  ### sub
5
5
  * GoogleFontKit
6
- * GoogleFontItem -> defaultText 기능 추가
7
- * export 추가 (constant/hook/types..)
6
+ * GoogleFontItem -> defaultText 기능 리턴 추가