zavadil-ts-common 1.2.74 → 1.2.75

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.
@@ -1,4 +1,4 @@
1
- export default class UrlUtil {
1
+ export declare class UrlUtil {
2
2
  static deleteParamFromUrl(url: string, paramName: string): string;
3
3
  static extractParamFromUrl(url: string, name: string): string | null;
4
4
  static paramExistsInUrl(url: string, name: string): boolean;
@@ -8,3 +8,4 @@ export { DateUtil } from './DateUtil';
8
8
  export { NumberUtil } from './NumberUtil';
9
9
  export { JsonUtil } from './JsonUtil';
10
10
  export { HashUtil } from './HashUtil';
11
+ export { UrlUtil } from './UrlUtil';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zavadil-ts-common",
3
- "version": "1.2.74",
3
+ "version": "1.2.75",
4
4
  "description": "Common types and components for Typescript UI apps.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -2,7 +2,7 @@ import {OAuthIdTokenProvider} from "./OAuthIdTokenProvider";
2
2
  import {IdTokenPayload} from "../OAuthRestClient";
3
3
  import {RedirectionProvider} from "./RedirectionProvider";
4
4
  import {RestClientWithOAuth} from "../RestClientWithOAuth";
5
- import UrlUtil from "../../util/UrlUtil";
5
+ import {UrlUtil} from "../../util";
6
6
 
7
7
  export class IdTokenProviderLogin extends RedirectionProvider implements OAuthIdTokenProvider {
8
8