taengmo-web-utilities 1.0.1 → 1.0.4

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 (2) hide show
  1. package/dist/index.d.mts +3 -3
  2. package/package.json +5 -5
package/dist/index.d.mts CHANGED
@@ -15,7 +15,7 @@ type PersonnelCredential = {
15
15
  is_admin: boolean;
16
16
  };
17
17
  type PersonnelAuthen = Omit<PersonnelCredential, "refresh_token">;
18
- type DropdownSchema$1 = {
18
+ type DropdownSchema = {
19
19
  label: string;
20
20
  value: string;
21
21
  };
@@ -228,7 +228,7 @@ declare function buttonFontSize(scale: ButtonSize): string;
228
228
  declare function buttonIconSize(scale: ButtonSize): number;
229
229
  //#endregion
230
230
  //#region src/uis/cn.d.ts
231
- declare function cn(...args: ClassValue[]): any;
231
+ declare function cn(...args: ClassValue[]): string;
232
232
  //#endregion
233
233
  //#region src/utilities/httpError.d.ts
234
234
  declare class HttpError extends Error {
@@ -236,4 +236,4 @@ declare class HttpError extends Error {
236
236
  constructor(status: number);
237
237
  }
238
238
  //#endregion
239
- export { BUTTON_SIZE, ButtonSize, CommonAuthen, Coordinate, DropdownSchema$1 as DropdownSchema, Email, EmailPassword, Employers, EmployersBenefits, EmployersLocations, EmployersName, EmployersSectors, EmployersSocialUrl, ErrorWithStatus, HttpError, IsoCountryCode, IsoCurrencyCode, IsoLanguageCode, LegalEntitySize, LegalEntityTypes, NewOrganizationAccount, NewPersonnelAccount, Packages, Personnel, PersonnelAuthen, PersonnelCreate, PersonnelCredential, PersonnelSocialUrl, PhotoUrlStatus, PlainText, PresignResponse, Sectors, Sex, buttonFontSize, buttonHeight, buttonIconSize, cn, isoCountryCodeDropdown, isoCountryCodeRaw, isoCurrencyCodeDropdown, isoCurrencyCodeRaw, isoLanguageCodeDropdown, isoLanguageCodeRaw, legalEntitySizeRaw, legalEntityTypesRaw, sectorsRaw };
239
+ export { BUTTON_SIZE, ButtonSize, CommonAuthen, Coordinate, DropdownSchema, Email, EmailPassword, Employers, EmployersBenefits, EmployersLocations, EmployersName, EmployersSectors, EmployersSocialUrl, ErrorWithStatus, HttpError, IsoCountryCode, IsoCurrencyCode, IsoLanguageCode, LegalEntitySize, LegalEntityTypes, NewOrganizationAccount, NewPersonnelAccount, Packages, Personnel, PersonnelAuthen, PersonnelCreate, PersonnelCredential, PersonnelSocialUrl, PhotoUrlStatus, PlainText, PresignResponse, Sectors, Sex, buttonFontSize, buttonHeight, buttonIconSize, cn, isoCountryCodeDropdown, isoCountryCodeRaw, isoCurrencyCodeDropdown, isoCurrencyCodeRaw, isoLanguageCodeDropdown, isoLanguageCodeRaw, legalEntitySizeRaw, legalEntityTypesRaw, sectorsRaw };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taengmo-web-utilities",
3
- "version": "1.0.1",
3
+ "version": "1.0.4",
4
4
  "description": "Utility for taengmo-web (TypeScript)",
5
5
  "keywords": [
6
6
  "taengmo"
@@ -8,16 +8,16 @@
8
8
  "type": "module",
9
9
  "author": "",
10
10
  "license": "MIT",
11
- "main": "dist/index.js",
12
- "types": "dist/index.d.ts",
11
+ "main": "dist/index.mjs",
12
+ "types": "dist/index.d.mts",
13
13
  "sideEffects": false,
14
14
  "files": [
15
15
  "dist"
16
16
  ],
17
17
  "exports": {
18
18
  ".": {
19
- "types": "./dist/index.d.ts",
20
- "default": "./dist/index.js"
19
+ "types": "./dist/index.d.mts",
20
+ "default": "./dist/index.mjs"
21
21
  }
22
22
  },
23
23
  "scripts": {