@clickview/auth 0.12.0-rc.7 → 0.12.1-dev.0
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.
- package/package.json +36 -36
- package/typings/libs/cloneDeep.d.ts +4 -4
- package/typings/libs/cookiesjs.d.ts +25 -25
- package/typings/utils/imports.d.ts +1 -1
- package/dist/css/auth-app.css +0 -31
- package/dist/js/auth-app.js +0 -3
- package/dist/js/auth-app.js.LICENSE.txt +0 -47
- package/dist/js/auth-app.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@clickview/auth",
|
|
3
|
-
"version": "0.12.
|
|
4
|
-
"description": "ClickView Auth",
|
|
5
|
-
"main": "dist/scripts/bundle.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"start": "cross-env NODE_ENV=development webpack -w --config ./tooling/webpack.config.js",
|
|
8
|
-
"build": "cross-env NODE_ENV=production webpack --config ./tooling/webpack.config.js"
|
|
9
|
-
},
|
|
10
|
-
"repository": {
|
|
11
|
-
"type": "git",
|
|
12
|
-
"url": "https://gitlab.cvinternal.net/front-end/clickview"
|
|
13
|
-
},
|
|
14
|
-
"cv": {
|
|
15
|
-
"publishable": true,
|
|
16
|
-
"rebuildable": true
|
|
17
|
-
},
|
|
18
|
-
"author": "Cameron Hill, Shale Kuzmanovski",
|
|
19
|
-
"license": "ISC",
|
|
20
|
-
"dependencies": {
|
|
21
|
-
"@clickview/styles": "1.31.0",
|
|
22
|
-
"timeago.js": "4.0.2",
|
|
23
|
-
"whatwg-fetch": "3.4.1"
|
|
24
|
-
},
|
|
25
|
-
"babel": {
|
|
26
|
-
"presets": [
|
|
27
|
-
[
|
|
28
|
-
"@babel/preset-env",
|
|
29
|
-
{
|
|
30
|
-
"corejs": 3,
|
|
31
|
-
"useBuiltIns": "entry"
|
|
32
|
-
}
|
|
33
|
-
]
|
|
34
|
-
]
|
|
35
|
-
}
|
|
36
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@clickview/auth",
|
|
3
|
+
"version": "0.12.1-dev.0",
|
|
4
|
+
"description": "ClickView Auth",
|
|
5
|
+
"main": "dist/scripts/bundle.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"start": "cross-env NODE_ENV=development webpack -w --config ./tooling/webpack.config.js",
|
|
8
|
+
"build": "cross-env NODE_ENV=production webpack --config ./tooling/webpack.config.js"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://gitlab.cvinternal.net/front-end/clickview"
|
|
13
|
+
},
|
|
14
|
+
"cv": {
|
|
15
|
+
"publishable": true,
|
|
16
|
+
"rebuildable": true
|
|
17
|
+
},
|
|
18
|
+
"author": "Cameron Hill, Shale Kuzmanovski",
|
|
19
|
+
"license": "ISC",
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"@clickview/styles": "1.31.0",
|
|
22
|
+
"timeago.js": "4.0.2",
|
|
23
|
+
"whatwg-fetch": "3.4.1"
|
|
24
|
+
},
|
|
25
|
+
"babel": {
|
|
26
|
+
"presets": [
|
|
27
|
+
[
|
|
28
|
+
"@babel/preset-env",
|
|
29
|
+
{
|
|
30
|
+
"corejs": 3,
|
|
31
|
+
"useBuiltIns": "entry"
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
]
|
|
35
|
+
}
|
|
36
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
declare function cloneDeep<T>(obj: T): T;
|
|
2
|
-
|
|
3
|
-
declare module 'lodash.clonedeep' {
|
|
4
|
-
export = cloneDeep;
|
|
1
|
+
declare function cloneDeep<T>(obj: T): T;
|
|
2
|
+
|
|
3
|
+
declare module 'lodash.clonedeep' {
|
|
4
|
+
export = cloneDeep;
|
|
5
5
|
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
interface IDocCookies {
|
|
2
|
-
|
|
3
|
-
getItem(sKey: string): string;
|
|
4
|
-
|
|
5
|
-
setItem(
|
|
6
|
-
sKey: string,
|
|
7
|
-
sValue: string,
|
|
8
|
-
vEnd?: number | string | Date,
|
|
9
|
-
sPath?: string,
|
|
10
|
-
sDomain?: string,
|
|
11
|
-
bSecure?: boolean,
|
|
12
|
-
type?: string
|
|
13
|
-
): boolean;
|
|
14
|
-
|
|
15
|
-
removeItem(sKey: string, sPath?: string, sDomain?: string): boolean;
|
|
16
|
-
|
|
17
|
-
hasItem(sKey: string): boolean;
|
|
18
|
-
|
|
19
|
-
keys(): string[];
|
|
20
|
-
|
|
21
|
-
clear(sPath?: string, sDomain?: string): void;
|
|
22
|
-
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
declare let docCookies: IDocCookies;
|
|
1
|
+
interface IDocCookies {
|
|
2
|
+
|
|
3
|
+
getItem(sKey: string): string;
|
|
4
|
+
|
|
5
|
+
setItem(
|
|
6
|
+
sKey: string,
|
|
7
|
+
sValue: string,
|
|
8
|
+
vEnd?: number | string | Date,
|
|
9
|
+
sPath?: string,
|
|
10
|
+
sDomain?: string,
|
|
11
|
+
bSecure?: boolean,
|
|
12
|
+
type?: string
|
|
13
|
+
): boolean;
|
|
14
|
+
|
|
15
|
+
removeItem(sKey: string, sPath?: string, sDomain?: string): boolean;
|
|
16
|
+
|
|
17
|
+
hasItem(sKey: string): boolean;
|
|
18
|
+
|
|
19
|
+
keys(): string[];
|
|
20
|
+
|
|
21
|
+
clear(sPath?: string, sDomain?: string): void;
|
|
22
|
+
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
declare let docCookies: IDocCookies;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare module '*.scss';
|
|
1
|
+
declare module '*.scss';
|
|
2
2
|
declare module '*.svg';
|