@smart-webcomponents-angular/tooltip 15.0.2 → 19.0.8

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/demo/angular.json DELETED
@@ -1,128 +0,0 @@
1
- {
2
- "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3
- "version": 1,
4
- "newProjectRoot": "projects",
5
- "projects": {
6
- "demo": {
7
- "root": "",
8
- "sourceRoot": "src",
9
- "projectType": "application",
10
- "prefix": "app",
11
- "schematics": {},
12
- "architect": {
13
- "build": {
14
- "builder": "@angular-devkit/build-angular:browser",
15
- "options": {
16
- "outputPath": "dist/demo",
17
- "index": "src/index.html",
18
- "main": "src/main.ts",
19
- "polyfills": "src/polyfills.ts",
20
- "tsConfig": "src/tsconfig.app.json",
21
- "assets": [
22
- "src/assets"
23
- ],
24
- "styles": [
25
- "./node_modules/@smart-webcomponents-angular/button/styles/smart.base.css",
26
- "./node_modules/@smart-webcomponents-angular/button/styles/smart.button.css",
27
- "./node_modules/@smart-webcomponents-angular/radiobutton/styles/smart.radiobutton.css",
28
- "./node_modules/@smart-webcomponents-angular/tooltip/styles/smart.tooltip.css",
29
- "./node_modules/@smart-webcomponents-angular/button/styles/smart.common.css",
30
- "src/assets/fonts.css",
31
- "src/assets/styles.css"
32
- ],
33
- "scripts": []
34
- },
35
- "configurations": {
36
- "production": {
37
- "fileReplacements": [
38
- {
39
- "replace": "src/environments/environment.ts",
40
- "with": "src/environments/environment.prod.ts"
41
- }
42
- ],
43
- "optimization": false,
44
- "outputHashing": "all",
45
- "sourceMap": false,
46
- "extractCss": true,
47
- "namedChunks": false,
48
- "aot": true,
49
- "extractLicenses": true,
50
- "vendorChunk": false,
51
- "buildOptimizer": false
52
- }
53
- }
54
- },
55
- "serve": {
56
- "builder": "@angular-devkit/build-angular:dev-server",
57
- "options": {
58
- "browserTarget": "demo:build"
59
- },
60
- "configurations": {
61
- "production": {
62
- "browserTarget": "demo:build:production"
63
- }
64
- }
65
- },
66
- "extract-i18n": {
67
- "builder": "@angular-devkit/build-angular:extract-i18n",
68
- "options": {
69
- "browserTarget": "demo:build"
70
- }
71
- },
72
- "test": {
73
- "builder": "@angular-devkit/build-angular:karma",
74
- "options": {
75
- "main": "src/test.ts",
76
- "polyfills": "src/polyfills.ts",
77
- "tsConfig": "src/tsconfig.spec.json",
78
- "karmaConfig": "src/karma.conf.js",
79
- "styles": [
80
- "styles.css"
81
- ],
82
- "scripts": [],
83
- "assets": [
84
- "src/favicon.ico",
85
- "src/assets"
86
- ]
87
- }
88
- },
89
- "lint": {
90
- "builder": "@angular-devkit/build-angular:tslint",
91
- "options": {
92
- "tsConfig": [
93
- "src/tsconfig.app.json",
94
- "src/tsconfig.spec.json"
95
- ],
96
- "exclude": [
97
- "**/node_modules/**"
98
- ]
99
- }
100
- }
101
- }
102
- },
103
- "demo-e2e": {
104
- "root": "e2e/",
105
- "projectType": "application",
106
- "architect": {
107
- "e2e": {
108
- "builder": "@angular-devkit/build-angular:protractor",
109
- "options": {
110
- "protractorConfig": "e2e/protractor.conf.js",
111
- "devServerTarget": "demo:serve"
112
- }
113
- },
114
- "lint": {
115
- "builder": "@angular-devkit/build-angular:tslint",
116
- "options": {
117
- "tsConfig": "e2e/tsconfig.e2e.json",
118
- "exclude": [
119
- "**/node_modules/**"
120
- ]
121
- }
122
- }
123
- }
124
- }
125
- },
126
- "defaultProject": "demo"
127
- }
128
-
package/demo/package.json DELETED
@@ -1,54 +0,0 @@
1
- {
2
- "name": "angular-tooltip-basic",
3
- "description": "Angular tooltip basic example. This example demonstrates commercial components by jQWidgets(https://www.jqwidgets.com/license/)",
4
- "version": "1.0.0",
5
- "homepage": "https://www.htmlelements.com/",
6
- "dependencies": {
7
- "@angular/animations": "^11.2.3",
8
- "@angular/elements": "^11.2.3",
9
- "@angular/common": "^11.2.3",
10
- "@angular/compiler": "^11.2.3",
11
- "@angular/core": "^11.2.3",
12
- "@angular/forms": "^11.2.3",
13
- "@angular/platform-browser": "^11.2.3",
14
- "@angular/platform-browser-dynamic": "^11.2.3",
15
- "@angular/router": "^11.2.3",
16
- "@types/jasmine": "^3.6.6",
17
- "@types/jasminewd2": "^2.0.8",
18
- "@types/node": "^14.14.31",
19
- "core-js": "3.9.1",
20
- "moment": "^2.29.1",
21
- "@smart-webcomponents-angular/button": "9.2.22",
22
- "@smart-webcomponents-angular/radiobutton": "9.2.22",
23
- "@smart-webcomponents-angular/tooltip": "9.2.22",
24
- "rxjs": "^6.6.6",
25
- "zone.js": "^0.11.4"
26
- },
27
- "scripts": {
28
- "ng": "ng",
29
- "start": "ng serve",
30
- "build": "ng build",
31
- "test": "ng test",
32
- "lint": "ng lint",
33
- "e2e": "ng e2e"
34
- },
35
- "devDependencies": {
36
- "@angular-devkit/build-angular": "~0.901.1",
37
- "@angular/cli": "~11.2.3",
38
- "@angular/compiler-cli": "~11.2.3",
39
- "@angular/language-service": "~11.2.3",
40
- "@types/node": "^14.14.35",
41
- "codelyzer": "^5.1.2",
42
- "jasmine-core": "~3.5.0",
43
- "jasmine-spec-reporter": "~4.2.1",
44
- "karma": "~4.4.1",
45
- "karma-chrome-launcher": "~3.1.0",
46
- "karma-coverage-istanbul-reporter": "~2.1.0",
47
- "karma-jasmine": "~3.0.1",
48
- "karma-jasmine-html-reporter": "^1.4.2",
49
- "protractor": "~5.4.3",
50
- "ts-node": "~8.3.0",
51
- "tslint": "~6.1.0",
52
- "typescript": "~4.1.5"
53
- }
54
- }
@@ -1,5 +0,0 @@
1
- smart-button {
2
- position: absolute;
3
- top: 25%;
4
- left: 25%;
5
- }
@@ -1,13 +0,0 @@
1
- <smart-button #button id="button">Button</smart-button>
2
- <smart-tooltip #tooltip id="tooltip" [selector]="'button'" [arrow]="true">This is a tooltip for smartButton</smart-tooltip>
3
- <div class="options">
4
- <h3>Tooltip Position:</h3>
5
- <smart-radio-button #radiobutton [checked]="true">Top</smart-radio-button>
6
- <br/>
7
- <smart-radio-button #radiobutton2>Bottom</smart-radio-button>
8
- <br/>
9
- <smart-radio-button #radiobutton3>Left</smart-radio-button>
10
- <br/>
11
- <smart-radio-button #radiobutton4>Right</smart-radio-button>
12
- <br/>
13
- </div>
@@ -1,13 +0,0 @@
1
- @font-face {
2
- font-family: "smart-icons";
3
- src: url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.eot");
4
- src:
5
- url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.woff2")
6
- format("woff2"),
7
- url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.woff")
8
- format("woff"),
9
- url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.ttf")
10
- format("truetype");
11
- font-weight: normal;
12
- font-style: normal;
13
- }
@@ -1,12 +0,0 @@
1
- body, html {
2
- width: 100%;
3
- height: 100%;
4
- padding: 0px;
5
- margin: 0px;
6
- min-height: 1000px;
7
- }
8
- app-root {
9
- display: block;
10
- width: 100%;
11
- height: 100%;
12
- }
@@ -1,42 +0,0 @@
1
- <!doctype html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="utf-8">
5
- <title>Angular Tooltip Basic</title>
6
- <base href="/">
7
- <link rel="stylesheet" href="https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/smart.default.css"/>
8
- <style>
9
- @font-face {
10
- font-family: "smart-icons";
11
- src: url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.eot");
12
- src:
13
- url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.woff2")
14
- format("woff2"),
15
- url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.woff")
16
- format("woff"),
17
- url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.ttf")
18
- format("truetype");
19
- font-weight: normal;
20
- font-style: normal;
21
- }
22
- </style>
23
- <script>
24
- console.log('****************************************************************************************************************');
25
- console.log('****************************************************************************************************************');
26
- console.log('****************************************************************************************************************');
27
- console.log('*jQWidgets License Key Not Found.');
28
- console.log('*This is an EVALUATION only Version, it is NOT Licensed for software projects intended for PRODUCTION.');
29
- console.log('*if you want to hide this message, please send an email to: sales@jqwidgets.com for a license.');
30
- console.log('****************************************************************************************************************');
31
- console.log('****************************************************************************************************************');
32
- console.log('****************************************************************************************************************');
33
- </script>
34
- <meta name="viewport" content="width=device-width, initial-scale=1">
35
- </head>
36
- <body>
37
- <app-root>Loading...</app-root>
38
- <div style="position: absolute; bottom: 5px; right: 5px;">
39
- <a href="https://www.jqwidgets.com/" alt="https://www.jqwidgets.com/"><img alt="https://www.jqwidgets.com/" title="https://www.jqwidgets.com/" src="https://www.jqwidgets.com/wp-content/design/i/logo-jqwidgets.png"/></a>
40
- </div>
41
- </body>
42
- </html>
@@ -1,15 +0,0 @@
1
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
- {
3
- "extends": "./tsconfig.json",
4
- "compilerOptions": {
5
- "outDir": "./out-tsc/app",
6
- "types": []
7
- },
8
- "files": [
9
- "main.ts",
10
- "polyfills.ts"
11
- ],
12
- "include": [
13
- "src/**/*.d.ts"
14
- ]
15
- }
@@ -1,23 +0,0 @@
1
- /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
- {
3
- "compileOnSave": false,
4
- "compilerOptions": {
5
- "baseUrl": "./",
6
- "outDir": "./dist/out-tsc",
7
- "sourceMap": true,
8
- "declaration": false,
9
- "downlevelIteration": true,
10
- "experimentalDecorators": true,
11
- "moduleResolution": "node",
12
- "importHelpers": true,
13
- "target": "es2015",
14
- "module": "es2020",
15
- "lib": [
16
- "es2018",
17
- "dom"
18
- ]
19
- },
20
- "angularCompilerOptions": {
21
- "enableI18nLegacyMessageIdFormat": false
22
- }
23
- }
package/start.js DELETED
@@ -1,5 +0,0 @@
1
-
2
- const { exec } = require("child_process");
3
-
4
- exec('cd ' + __dirname + '/demo && npm install && npm run start');
5
- console.log("Installing npm modules and running ng serve. Please, open localhost:4200 in your web browser.");