@frxjs/ngx-timeline 1.0.3 → 1.0.7
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/README.md +136 -127
- package/bundles/frxjs-ngx-timeline.umd.js +696 -0
- package/bundles/frxjs-ngx-timeline.umd.js.map +1 -0
- package/bundles/frxjs-ngx-timeline.umd.min.js +2 -0
- package/bundles/frxjs-ngx-timeline.umd.min.js.map +1 -0
- package/esm2015/frxjs-ngx-timeline.js +8 -0
- package/esm2015/lib/components/index.js +3 -0
- package/esm2015/lib/components/ngx-timeline-event/ngx-timeline-event.component.js +55 -0
- package/esm2015/lib/components/ngx-timeline.component.js +147 -0
- package/esm2015/lib/models/NgxConfigObj.js +93 -0
- package/esm2015/lib/models/NgxTimelineEvent.js +6 -0
- package/esm2015/lib/models/index.js +3 -0
- package/esm2015/lib/ngx-timeline.module.js +23 -0
- package/esm2015/lib/pipes/index.js +2 -0
- package/esm2015/lib/pipes/ngx-date-pipe.js +28 -0
- package/esm2015/public-api.js +8 -0
- package/fesm2015/frxjs-ngx-timeline.js +350 -0
- package/fesm2015/frxjs-ngx-timeline.js.map +1 -0
- package/frxjs-ngx-timeline.d.ts +7 -0
- package/frxjs-ngx-timeline.metadata.json +1 -0
- package/{projects/ngx-timeline/src/lib/components/index.ts → lib/components/index.d.ts} +2 -2
- package/lib/components/ngx-timeline-event/ngx-timeline-event.component.d.ts +35 -0
- package/lib/components/ngx-timeline.component.d.ts +76 -0
- package/lib/models/NgxConfigObj.d.ts +59 -0
- package/lib/models/NgxTimelineEvent.d.ts +29 -0
- package/{projects/ngx-timeline/src/lib/models/index.ts → lib/models/index.d.ts} +2 -2
- package/lib/ngx-timeline.module.d.ts +2 -0
- package/{projects/ngx-timeline/src/lib/pipes/index.ts → lib/pipes/index.d.ts} +1 -1
- package/lib/pipes/ngx-date-pipe.d.ts +7 -0
- package/package.json +21 -50
- package/{projects/ngx-timeline/src/public-api.ts → public-api.d.ts} +4 -7
- package/.editorconfig +0 -16
- package/.github/workflows/main.yml +0 -25
- package/angular.json +0 -169
- package/docs/3rdpartylicenses.txt +0 -268
- package/docs/assets/inter.png +0 -0
- package/docs/favicon.ico +0 -0
- package/docs/index.html +0 -13
- package/docs/main.6005a10000c87d7095d3.js +0 -1
- package/docs/polyfills.f8ddde825b13760c1743.js +0 -1
- package/docs/runtime.0e49e2b53282f40c8925.js +0 -1
- package/docs/styles.09e2c710755c8867a460.css +0 -0
- package/package-lock.json +0 -14400
- package/projects/demo-app/.browserslistrc +0 -17
- package/projects/demo-app/e2e/protractor.conf.js +0 -37
- package/projects/demo-app/e2e/src/app.e2e-spec.ts +0 -23
- package/projects/demo-app/e2e/src/app.po.ts +0 -11
- package/projects/demo-app/e2e/tsconfig.json +0 -13
- package/projects/demo-app/karma.conf.js +0 -44
- package/projects/demo-app/src/app/app.component.html +0 -90
- package/projects/demo-app/src/app/app.component.scss +0 -417
- package/projects/demo-app/src/app/app.component.ts +0 -147
- package/projects/demo-app/src/app/app.module.ts +0 -20
- package/projects/demo-app/src/assets/.gitkeep +0 -0
- package/projects/demo-app/src/assets/inter.png +0 -0
- package/projects/demo-app/src/environments/environment.prod.ts +0 -3
- package/projects/demo-app/src/environments/environment.ts +0 -16
- package/projects/demo-app/src/favicon.ico +0 -0
- package/projects/demo-app/src/index.html +0 -13
- package/projects/demo-app/src/main.ts +0 -12
- package/projects/demo-app/src/polyfills.ts +0 -63
- package/projects/demo-app/src/styles.scss +0 -1
- package/projects/demo-app/src/test.ts +0 -25
- package/projects/demo-app/tsconfig.app.json +0 -26
- package/projects/demo-app/tsconfig.spec.json +0 -18
- package/projects/demo-app/tslint.json +0 -17
- package/projects/ngx-timeline/README.md +0 -127
- package/projects/ngx-timeline/karma.conf.js +0 -44
- package/projects/ngx-timeline/ng-package.json +0 -7
- package/projects/ngx-timeline/package.json +0 -17
- package/projects/ngx-timeline/src/lib/components/ngx-timeline-event/ngx-timeline-event.component.html +0 -37
- package/projects/ngx-timeline/src/lib/components/ngx-timeline-event/ngx-timeline-event.component.scss +0 -197
- package/projects/ngx-timeline/src/lib/components/ngx-timeline-event/ngx-timeline-event.component.spec.ts +0 -89
- package/projects/ngx-timeline/src/lib/components/ngx-timeline-event/ngx-timeline-event.component.ts +0 -66
- package/projects/ngx-timeline/src/lib/components/ngx-timeline.component.html +0 -98
- package/projects/ngx-timeline/src/lib/components/ngx-timeline.component.spec.ts +0 -160
- package/projects/ngx-timeline/src/lib/components/ngx-timeline.component.ts +0 -187
- package/projects/ngx-timeline/src/lib/components/ngx-timeline.scss +0 -226
- package/projects/ngx-timeline/src/lib/models/NgxConfigObj.ts +0 -110
- package/projects/ngx-timeline/src/lib/models/NgxTimelineEvent.ts +0 -32
- package/projects/ngx-timeline/src/lib/ngx-timeline.module.ts +0 -21
- package/projects/ngx-timeline/src/lib/pipes/ngx-date-pipe.ts +0 -29
- package/projects/ngx-timeline/src/test.ts +0 -26
- package/projects/ngx-timeline/tsconfig.lib.json +0 -25
- package/projects/ngx-timeline/tsconfig.lib.prod.json +0 -10
- package/projects/ngx-timeline/tsconfig.spec.json +0 -17
- package/projects/ngx-timeline/tslint.json +0 -17
- package/tsconfig.json +0 -35
- package/tslint.json +0 -140
package/tsconfig.json
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compileOnSave": false,
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"baseUrl": "./",
|
|
5
|
-
"outDir": "./dist/out-tsc",
|
|
6
|
-
"forceConsistentCasingInFileNames": true,
|
|
7
|
-
"preserveSymlinks": true,
|
|
8
|
-
"strict": false,
|
|
9
|
-
"noImplicitReturns": true,
|
|
10
|
-
"noFallthroughCasesInSwitch": true,
|
|
11
|
-
"sourceMap": true,
|
|
12
|
-
"declaration": false,
|
|
13
|
-
"downlevelIteration": true,
|
|
14
|
-
"experimentalDecorators": true,
|
|
15
|
-
"moduleResolution": "node",
|
|
16
|
-
"importHelpers": true,
|
|
17
|
-
"target": "es2015",
|
|
18
|
-
"module": "es2020",
|
|
19
|
-
"lib": [
|
|
20
|
-
"es2018",
|
|
21
|
-
"dom"
|
|
22
|
-
],
|
|
23
|
-
"paths": {
|
|
24
|
-
"ngx-timeline": [
|
|
25
|
-
"dist/ngx-timeline/ngx-timeline",
|
|
26
|
-
"dist/ngx-timeline"
|
|
27
|
-
]
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
"angularCompilerOptions": {
|
|
31
|
-
"strictInjectionParameters": true,
|
|
32
|
-
"strictInputAccessModifiers": true,
|
|
33
|
-
"strictTemplates": false
|
|
34
|
-
}
|
|
35
|
-
}
|
package/tslint.json
DELETED
|
@@ -1,140 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "tslint:recommended",
|
|
3
|
-
"rulesDirectory": [
|
|
4
|
-
"codelyzer"
|
|
5
|
-
],
|
|
6
|
-
"rules": {
|
|
7
|
-
"align": {
|
|
8
|
-
"options": [
|
|
9
|
-
"parameters",
|
|
10
|
-
"statements"
|
|
11
|
-
]
|
|
12
|
-
},
|
|
13
|
-
"array-type": false,
|
|
14
|
-
"arrow-return-shorthand": true,
|
|
15
|
-
"curly": true,
|
|
16
|
-
"deprecation": {
|
|
17
|
-
"severity": "warning"
|
|
18
|
-
},
|
|
19
|
-
"eofline": true,
|
|
20
|
-
"import-blacklist": [
|
|
21
|
-
true,
|
|
22
|
-
"rxjs/Rx"
|
|
23
|
-
],
|
|
24
|
-
"import-spacing": true,
|
|
25
|
-
"indent": {
|
|
26
|
-
"options": [
|
|
27
|
-
"spaces"
|
|
28
|
-
]
|
|
29
|
-
},
|
|
30
|
-
"max-classes-per-file": false,
|
|
31
|
-
"max-line-length": [
|
|
32
|
-
true,
|
|
33
|
-
140
|
|
34
|
-
],
|
|
35
|
-
"member-ordering": [
|
|
36
|
-
true,
|
|
37
|
-
{
|
|
38
|
-
"order": [
|
|
39
|
-
"static-field",
|
|
40
|
-
"instance-field",
|
|
41
|
-
"static-method",
|
|
42
|
-
"instance-method"
|
|
43
|
-
]
|
|
44
|
-
}
|
|
45
|
-
],
|
|
46
|
-
"no-console": [
|
|
47
|
-
true,
|
|
48
|
-
"debug",
|
|
49
|
-
"info",
|
|
50
|
-
"time",
|
|
51
|
-
"timeEnd",
|
|
52
|
-
"trace"
|
|
53
|
-
],
|
|
54
|
-
"no-empty": false,
|
|
55
|
-
"no-inferrable-types": [
|
|
56
|
-
true,
|
|
57
|
-
"ignore-params"
|
|
58
|
-
],
|
|
59
|
-
"no-non-null-assertion": true,
|
|
60
|
-
"no-redundant-jsdoc": true,
|
|
61
|
-
"no-switch-case-fall-through": true,
|
|
62
|
-
"no-var-requires": false,
|
|
63
|
-
"object-literal-key-quotes": [
|
|
64
|
-
true,
|
|
65
|
-
"as-needed"
|
|
66
|
-
],
|
|
67
|
-
"quotemark": [
|
|
68
|
-
true,
|
|
69
|
-
"single"
|
|
70
|
-
],
|
|
71
|
-
"semicolon": {
|
|
72
|
-
"options": [
|
|
73
|
-
"always"
|
|
74
|
-
]
|
|
75
|
-
},
|
|
76
|
-
"space-before-function-paren": {
|
|
77
|
-
"options": {
|
|
78
|
-
"anonymous": "never",
|
|
79
|
-
"asyncArrow": "always",
|
|
80
|
-
"constructor": "never",
|
|
81
|
-
"method": "never",
|
|
82
|
-
"named": "never"
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
"typedef": [
|
|
86
|
-
true,
|
|
87
|
-
"call-signature"
|
|
88
|
-
],
|
|
89
|
-
"typedef-whitespace": {
|
|
90
|
-
"options": [
|
|
91
|
-
{
|
|
92
|
-
"call-signature": "nospace",
|
|
93
|
-
"index-signature": "nospace",
|
|
94
|
-
"parameter": "nospace",
|
|
95
|
-
"property-declaration": "nospace",
|
|
96
|
-
"variable-declaration": "nospace"
|
|
97
|
-
},
|
|
98
|
-
{
|
|
99
|
-
"call-signature": "onespace",
|
|
100
|
-
"index-signature": "onespace",
|
|
101
|
-
"parameter": "onespace",
|
|
102
|
-
"property-declaration": "onespace",
|
|
103
|
-
"variable-declaration": "onespace"
|
|
104
|
-
}
|
|
105
|
-
]
|
|
106
|
-
},
|
|
107
|
-
"variable-name": {
|
|
108
|
-
"options": [
|
|
109
|
-
"ban-keywords",
|
|
110
|
-
"check-format",
|
|
111
|
-
"allow-pascal-case"
|
|
112
|
-
]
|
|
113
|
-
},
|
|
114
|
-
"whitespace": {
|
|
115
|
-
"options": [
|
|
116
|
-
"check-branch",
|
|
117
|
-
"check-decl",
|
|
118
|
-
"check-operator",
|
|
119
|
-
"check-separator",
|
|
120
|
-
"check-type",
|
|
121
|
-
"check-typecast"
|
|
122
|
-
]
|
|
123
|
-
},
|
|
124
|
-
"component-class-suffix": true,
|
|
125
|
-
"contextual-lifecycle": true,
|
|
126
|
-
"directive-class-suffix": true,
|
|
127
|
-
"no-conflicting-lifecycle": true,
|
|
128
|
-
"no-host-metadata-property": true,
|
|
129
|
-
"no-input-rename": true,
|
|
130
|
-
"no-inputs-metadata-property": true,
|
|
131
|
-
"no-output-native": true,
|
|
132
|
-
"no-output-on-prefix": true,
|
|
133
|
-
"no-output-rename": true,
|
|
134
|
-
"no-outputs-metadata-property": true,
|
|
135
|
-
"template-banana-in-box": true,
|
|
136
|
-
"template-no-negated-async": true,
|
|
137
|
-
"use-lifecycle-interface": true,
|
|
138
|
-
"use-pipe-transform-interface": true
|
|
139
|
-
}
|
|
140
|
-
}
|