@syncfusion/ej2-base 20.2.47 → 20.3.47
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/CHANGELOG.md +6 -18
- package/{ReadMe.md → README.md} +1 -1
- package/bin/syncfusion-license.js +1 -1
- package/dist/ej2-base.min.js +10 -0
- package/dist/ej2-base.umd.min.js +10 -1
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +3 -3
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +3 -3
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +10 -1
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +9 -0
- package/package.json +219 -164
- package/src/validate-lic.js +3 -3
- package/styles/_all.scss +1 -2
- package/styles/_bootstrap4-definition.scss +0 -1
- package/styles/_highcontrast-light-definition.scss +0 -1
- package/styles/_material-dark-definition.scss +1 -1
- package/styles/_material-definition.scss +1 -1
- package/styles/_tailwind-dark-definition.scss +1 -1
- package/styles/_tailwind-definition.scss +1 -1
- package/styles/animation/_all.scss +31 -30
- package/styles/bootstrap-dark.css +87 -3
- package/styles/bootstrap.css +87 -3
- package/styles/bootstrap4.css +87 -3
- package/styles/bootstrap5-dark.css +87 -3
- package/styles/bootstrap5.css +87 -3
- package/styles/common/_core.scss +5 -8
- package/styles/definition/_bootstrap-dark.scss +114 -0
- package/styles/definition/_bootstrap.scss +115 -1
- package/styles/definition/_bootstrap4.scss +114 -0
- package/styles/definition/_bootstrap5-dark.scss +123 -24
- package/styles/definition/_bootstrap5.scss +115 -14
- package/styles/definition/_fabric-dark.scss +114 -0
- package/styles/definition/_fabric.scss +114 -0
- package/styles/definition/_fluent-dark.scss +130 -17
- package/styles/definition/_fluent.scss +126 -14
- package/styles/definition/_fusionnew-dark.scss +26 -24
- package/styles/definition/_fusionnew.scss +18 -14
- package/styles/definition/_highcontrast-light.scss +112 -0
- package/styles/definition/_highcontrast.scss +114 -0
- package/styles/definition/_material-dark.scss +114 -0
- package/styles/definition/_material.scss +114 -0
- package/styles/definition/_material3-dark.scss +30 -17
- package/styles/definition/_material3.scss +18 -14
- package/styles/definition/_tailwind-dark.scss +119 -17
- package/styles/definition/_tailwind.scss +120 -18
- package/styles/fabric-dark.css +87 -3
- package/styles/fabric.css +87 -3
- package/styles/fluent-dark.css +87 -3
- package/styles/fluent.css +87 -3
- package/styles/highcontrast-light.css +87 -3
- package/styles/highcontrast.css +87 -3
- package/styles/material-dark.css +87 -3
- package/styles/material.css +87 -3
- package/styles/offline-theme/material-dark.css +2595 -0
- package/styles/offline-theme/material.css +2595 -0
- package/styles/offline-theme/tailwind-dark.css +1869 -0
- package/styles/offline-theme/tailwind.css +1869 -0
- package/styles/tailwind-dark.css +87 -3
- package/styles/tailwind.css +87 -3
package/dist/global/index.d.ts
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* filename: index.d.ts
|
|
3
|
+
* version : 20.3.47
|
|
4
|
+
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
|
+
* Use of this code is subject to the terms of our license.
|
|
6
|
+
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
|
+
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
|
+
* applicable laws.
|
|
9
|
+
*/
|
|
1
10
|
import * as _base from '@syncfusion/ej2-base';
|
|
2
11
|
|
|
3
12
|
export declare namespace ej {
|
package/package.json
CHANGED
|
@@ -1,165 +1,220 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
2
|
+
"_from": "@syncfusion/ej2-base@*",
|
|
3
|
+
"_id": "@syncfusion/ej2-base@18.61.0",
|
|
4
|
+
"_inBundle": false,
|
|
5
|
+
"_integrity": "sha512-EmFliI9NMWLvafEc2XLB49PhBc9fmzaiR3JQBS6k4Hc4stEGgbUVKN3uWxgfngsF39GVlYndT4cfZXzG/f8SGg==",
|
|
6
|
+
"_location": "/@syncfusion/ej2-base",
|
|
7
|
+
"_phantomChildren": {},
|
|
8
|
+
"_requested": {
|
|
9
|
+
"type": "range",
|
|
10
|
+
"registry": true,
|
|
11
|
+
"raw": "@syncfusion/ej2-base@*",
|
|
12
|
+
"name": "@syncfusion/ej2-base",
|
|
13
|
+
"escapedName": "@syncfusion%2fej2-base",
|
|
14
|
+
"scope": "@syncfusion",
|
|
15
|
+
"rawSpec": "*",
|
|
16
|
+
"saveSpec": null,
|
|
17
|
+
"fetchSpec": "*"
|
|
18
|
+
},
|
|
19
|
+
"_requiredBy": [
|
|
20
|
+
"/",
|
|
21
|
+
"/@syncfusion/ej2",
|
|
22
|
+
"/@syncfusion/ej2-angular-barcode-generator",
|
|
23
|
+
"/@syncfusion/ej2-angular-base",
|
|
24
|
+
"/@syncfusion/ej2-angular-buttons",
|
|
25
|
+
"/@syncfusion/ej2-angular-calendars",
|
|
26
|
+
"/@syncfusion/ej2-angular-charts",
|
|
27
|
+
"/@syncfusion/ej2-angular-circulargauge",
|
|
28
|
+
"/@syncfusion/ej2-angular-diagrams",
|
|
29
|
+
"/@syncfusion/ej2-angular-documenteditor",
|
|
30
|
+
"/@syncfusion/ej2-angular-dropdowns",
|
|
31
|
+
"/@syncfusion/ej2-angular-filemanager",
|
|
32
|
+
"/@syncfusion/ej2-angular-gantt",
|
|
33
|
+
"/@syncfusion/ej2-angular-grids",
|
|
34
|
+
"/@syncfusion/ej2-angular-heatmap",
|
|
35
|
+
"/@syncfusion/ej2-angular-image-editor",
|
|
36
|
+
"/@syncfusion/ej2-angular-inplace-editor",
|
|
37
|
+
"/@syncfusion/ej2-angular-inputs",
|
|
38
|
+
"/@syncfusion/ej2-angular-kanban",
|
|
39
|
+
"/@syncfusion/ej2-angular-layouts",
|
|
40
|
+
"/@syncfusion/ej2-angular-lineargauge",
|
|
41
|
+
"/@syncfusion/ej2-angular-lists",
|
|
42
|
+
"/@syncfusion/ej2-angular-maps",
|
|
43
|
+
"/@syncfusion/ej2-angular-navigations",
|
|
44
|
+
"/@syncfusion/ej2-angular-notifications",
|
|
45
|
+
"/@syncfusion/ej2-angular-pdfviewer",
|
|
46
|
+
"/@syncfusion/ej2-angular-pivotview",
|
|
47
|
+
"/@syncfusion/ej2-angular-popups",
|
|
48
|
+
"/@syncfusion/ej2-angular-progressbar",
|
|
49
|
+
"/@syncfusion/ej2-angular-querybuilder",
|
|
50
|
+
"/@syncfusion/ej2-angular-richtexteditor",
|
|
51
|
+
"/@syncfusion/ej2-angular-schedule",
|
|
52
|
+
"/@syncfusion/ej2-angular-splitbuttons",
|
|
53
|
+
"/@syncfusion/ej2-angular-spreadsheet",
|
|
54
|
+
"/@syncfusion/ej2-angular-treegrid",
|
|
55
|
+
"/@syncfusion/ej2-angular-treemap",
|
|
56
|
+
"/@syncfusion/ej2-barcode-generator",
|
|
57
|
+
"/@syncfusion/ej2-buttons",
|
|
58
|
+
"/@syncfusion/ej2-calendars",
|
|
59
|
+
"/@syncfusion/ej2-charts",
|
|
60
|
+
"/@syncfusion/ej2-circulargauge",
|
|
61
|
+
"/@syncfusion/ej2-data",
|
|
62
|
+
"/@syncfusion/ej2-diagrams",
|
|
63
|
+
"/@syncfusion/ej2-documenteditor",
|
|
64
|
+
"/@syncfusion/ej2-drawings",
|
|
65
|
+
"/@syncfusion/ej2-dropdowns",
|
|
66
|
+
"/@syncfusion/ej2-excel-export",
|
|
67
|
+
"/@syncfusion/ej2-filemanager",
|
|
68
|
+
"/@syncfusion/ej2-gantt",
|
|
69
|
+
"/@syncfusion/ej2-grids",
|
|
70
|
+
"/@syncfusion/ej2-heatmap",
|
|
71
|
+
"/@syncfusion/ej2-image-editor",
|
|
72
|
+
"/@syncfusion/ej2-inplace-editor",
|
|
73
|
+
"/@syncfusion/ej2-inputs",
|
|
74
|
+
"/@syncfusion/ej2-kanban",
|
|
75
|
+
"/@syncfusion/ej2-layouts",
|
|
76
|
+
"/@syncfusion/ej2-lineargauge",
|
|
77
|
+
"/@syncfusion/ej2-lists",
|
|
78
|
+
"/@syncfusion/ej2-maps",
|
|
79
|
+
"/@syncfusion/ej2-navigations",
|
|
80
|
+
"/@syncfusion/ej2-notifications",
|
|
81
|
+
"/@syncfusion/ej2-pdfviewer",
|
|
82
|
+
"/@syncfusion/ej2-pivotview",
|
|
83
|
+
"/@syncfusion/ej2-popups",
|
|
84
|
+
"/@syncfusion/ej2-progressbar",
|
|
85
|
+
"/@syncfusion/ej2-querybuilder",
|
|
86
|
+
"/@syncfusion/ej2-react-barcode-generator",
|
|
87
|
+
"/@syncfusion/ej2-react-base",
|
|
88
|
+
"/@syncfusion/ej2-react-buttons",
|
|
89
|
+
"/@syncfusion/ej2-react-calendars",
|
|
90
|
+
"/@syncfusion/ej2-react-charts",
|
|
91
|
+
"/@syncfusion/ej2-react-circulargauge",
|
|
92
|
+
"/@syncfusion/ej2-react-diagrams",
|
|
93
|
+
"/@syncfusion/ej2-react-documenteditor",
|
|
94
|
+
"/@syncfusion/ej2-react-dropdowns",
|
|
95
|
+
"/@syncfusion/ej2-react-filemanager",
|
|
96
|
+
"/@syncfusion/ej2-react-gantt",
|
|
97
|
+
"/@syncfusion/ej2-react-grids",
|
|
98
|
+
"/@syncfusion/ej2-react-heatmap",
|
|
99
|
+
"/@syncfusion/ej2-react-image-editor",
|
|
100
|
+
"/@syncfusion/ej2-react-inplace-editor",
|
|
101
|
+
"/@syncfusion/ej2-react-inputs",
|
|
102
|
+
"/@syncfusion/ej2-react-kanban",
|
|
103
|
+
"/@syncfusion/ej2-react-layouts",
|
|
104
|
+
"/@syncfusion/ej2-react-lineargauge",
|
|
105
|
+
"/@syncfusion/ej2-react-lists",
|
|
106
|
+
"/@syncfusion/ej2-react-maps",
|
|
107
|
+
"/@syncfusion/ej2-react-navigations",
|
|
108
|
+
"/@syncfusion/ej2-react-notifications",
|
|
109
|
+
"/@syncfusion/ej2-react-pdfviewer",
|
|
110
|
+
"/@syncfusion/ej2-react-pivotview",
|
|
111
|
+
"/@syncfusion/ej2-react-popups",
|
|
112
|
+
"/@syncfusion/ej2-react-progressbar",
|
|
113
|
+
"/@syncfusion/ej2-react-querybuilder",
|
|
114
|
+
"/@syncfusion/ej2-react-richtexteditor",
|
|
115
|
+
"/@syncfusion/ej2-react-schedule",
|
|
116
|
+
"/@syncfusion/ej2-react-splitbuttons",
|
|
117
|
+
"/@syncfusion/ej2-react-spreadsheet",
|
|
118
|
+
"/@syncfusion/ej2-react-treegrid",
|
|
119
|
+
"/@syncfusion/ej2-react-treemap",
|
|
120
|
+
"/@syncfusion/ej2-richtexteditor",
|
|
121
|
+
"/@syncfusion/ej2-schedule",
|
|
122
|
+
"/@syncfusion/ej2-splitbuttons",
|
|
123
|
+
"/@syncfusion/ej2-spreadsheet",
|
|
124
|
+
"/@syncfusion/ej2-svg-base",
|
|
125
|
+
"/@syncfusion/ej2-treegrid",
|
|
126
|
+
"/@syncfusion/ej2-treemap",
|
|
127
|
+
"/@syncfusion/ej2-vue-barcode-generator",
|
|
128
|
+
"/@syncfusion/ej2-vue-base",
|
|
129
|
+
"/@syncfusion/ej2-vue-buttons",
|
|
130
|
+
"/@syncfusion/ej2-vue-calendars",
|
|
131
|
+
"/@syncfusion/ej2-vue-charts",
|
|
132
|
+
"/@syncfusion/ej2-vue-circulargauge",
|
|
133
|
+
"/@syncfusion/ej2-vue-diagrams",
|
|
134
|
+
"/@syncfusion/ej2-vue-documenteditor",
|
|
135
|
+
"/@syncfusion/ej2-vue-dropdowns",
|
|
136
|
+
"/@syncfusion/ej2-vue-filemanager",
|
|
137
|
+
"/@syncfusion/ej2-vue-gantt",
|
|
138
|
+
"/@syncfusion/ej2-vue-grids",
|
|
139
|
+
"/@syncfusion/ej2-vue-heatmap",
|
|
140
|
+
"/@syncfusion/ej2-vue-image-editor",
|
|
141
|
+
"/@syncfusion/ej2-vue-inplace-editor",
|
|
142
|
+
"/@syncfusion/ej2-vue-inputs",
|
|
143
|
+
"/@syncfusion/ej2-vue-kanban",
|
|
144
|
+
"/@syncfusion/ej2-vue-layouts",
|
|
145
|
+
"/@syncfusion/ej2-vue-lineargauge",
|
|
146
|
+
"/@syncfusion/ej2-vue-lists",
|
|
147
|
+
"/@syncfusion/ej2-vue-maps",
|
|
148
|
+
"/@syncfusion/ej2-vue-navigations",
|
|
149
|
+
"/@syncfusion/ej2-vue-notifications",
|
|
150
|
+
"/@syncfusion/ej2-vue-pdfviewer",
|
|
151
|
+
"/@syncfusion/ej2-vue-pivotview",
|
|
152
|
+
"/@syncfusion/ej2-vue-popups",
|
|
153
|
+
"/@syncfusion/ej2-vue-progressbar",
|
|
154
|
+
"/@syncfusion/ej2-vue-querybuilder",
|
|
155
|
+
"/@syncfusion/ej2-vue-richtexteditor",
|
|
156
|
+
"/@syncfusion/ej2-vue-schedule",
|
|
157
|
+
"/@syncfusion/ej2-vue-splitbuttons",
|
|
158
|
+
"/@syncfusion/ej2-vue-spreadsheet",
|
|
159
|
+
"/@syncfusion/ej2-vue-treegrid",
|
|
160
|
+
"/@syncfusion/ej2-vue-treemap"
|
|
161
|
+
],
|
|
162
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-base/-/ej2-base-18.61.0.tgz",
|
|
163
|
+
"_shasum": "d4358e4f1910f9acaaa4daf75808ba285e7c5ae0",
|
|
164
|
+
"_spec": "@syncfusion/ej2-base@*",
|
|
165
|
+
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
166
|
+
"author": {
|
|
167
|
+
"name": "Syncfusion Inc."
|
|
168
|
+
},
|
|
169
|
+
"bin": {
|
|
170
|
+
"syncfusion-license": "bin/syncfusion-license.js"
|
|
171
|
+
},
|
|
172
|
+
"bugs": {
|
|
173
|
+
"url": "https://github.com/syncfusion/ej2-javascript-ui-controls/issues"
|
|
174
|
+
},
|
|
175
|
+
"bundleDependencies": false,
|
|
176
|
+
"dependencies": {
|
|
177
|
+
"@syncfusion/ej2-icons": "~20.3.47"
|
|
178
|
+
},
|
|
179
|
+
"deprecated": false,
|
|
180
|
+
"description": "A common package of Essential JS 2 base libraries, methods and class definitions",
|
|
181
|
+
"devDependencies": {},
|
|
182
|
+
"es2015": "./dist/es6/ej2-base.es5.js",
|
|
183
|
+
"homepage": "https://www.syncfusion.com/javascript-ui-controls",
|
|
184
|
+
"keywords": [
|
|
185
|
+
"ej2",
|
|
186
|
+
"syncfusion",
|
|
187
|
+
"ej2-base",
|
|
188
|
+
"web-components",
|
|
189
|
+
"typescript",
|
|
190
|
+
"base",
|
|
191
|
+
"common",
|
|
192
|
+
"core",
|
|
193
|
+
"library",
|
|
194
|
+
"ajax",
|
|
195
|
+
"animation",
|
|
196
|
+
"internationalization",
|
|
197
|
+
"drag",
|
|
198
|
+
"drop",
|
|
199
|
+
"drag-drop",
|
|
200
|
+
"template",
|
|
201
|
+
"template-engine",
|
|
202
|
+
"rtl",
|
|
203
|
+
"right-to-left",
|
|
204
|
+
"persistence",
|
|
205
|
+
"state-persistence",
|
|
206
|
+
"theme",
|
|
207
|
+
"styles"
|
|
208
|
+
],
|
|
209
|
+
"license": "SEE LICENSE IN license",
|
|
210
|
+
"main": "./dist/ej2-base.umd.min.js",
|
|
211
|
+
"module": "./index.js",
|
|
212
|
+
"name": "@syncfusion/ej2-base",
|
|
213
|
+
"repository": {
|
|
214
|
+
"type": "git",
|
|
215
|
+
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
|
216
|
+
},
|
|
217
|
+
"typings": "index.d.ts",
|
|
218
|
+
"version": "20.3.47",
|
|
219
|
+
"sideEffects": true
|
|
220
|
+
}
|
package/src/validate-lic.js
CHANGED
|
@@ -10,7 +10,7 @@ var bypassKey = [115, 121, 110, 99, 102, 117, 115, 105,
|
|
|
10
10
|
var LicenseValidator = /** @class */ (function () {
|
|
11
11
|
function LicenseValidator(key) {
|
|
12
12
|
this.isValidated = false;
|
|
13
|
-
this.version = '20.
|
|
13
|
+
this.version = '20.3';
|
|
14
14
|
this.platform = /JavaScript|ASPNET|ASPNETCORE|ASPNETMVC|FileFormats/i;
|
|
15
15
|
this.errors = {
|
|
16
16
|
noLicense: 'This application was built using a trial version of Syncfusion Essential Studio.' +
|
|
@@ -96,7 +96,7 @@ var LicenseValidator = /** @class */ (function () {
|
|
|
96
96
|
if (validateMsg && typeof document !== 'undefined' && !isNullOrUndefined(document)) {
|
|
97
97
|
var errorDiv = createElement('div', {
|
|
98
98
|
innerHTML: validateMsg +
|
|
99
|
-
'<span id="license-banner-
|
|
99
|
+
'<span id="license-banner-event" class="e-license-banner" >' +
|
|
100
100
|
'<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20">' +
|
|
101
101
|
'<line x1="5" y1="5" x2="15" y2="15" stroke="yellow" stroke-width="2.5" ' +
|
|
102
102
|
'stroke-miterlimit="10" stroke-linecap="round"></line><line x1="15" y1="5" ' +
|
|
@@ -108,7 +108,7 @@ var LicenseValidator = /** @class */ (function () {
|
|
|
108
108
|
});
|
|
109
109
|
errorDiv.setAttribute('id', 'js-licensing');
|
|
110
110
|
document.body.appendChild(errorDiv);
|
|
111
|
-
document.getElementById('license-banner-
|
|
111
|
+
document.getElementById('license-banner-event').addEventListener('click', function () {
|
|
112
112
|
document.getElementById('js-licensing').remove();
|
|
113
113
|
});
|
|
114
114
|
}
|
package/styles/_all.scss
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
@if not variable-exists('is-roboto-loaded') {
|
|
5
5
|
//sass-lint:disable no-url-protocols,no-url-domains
|
|
6
|
-
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500')
|
|
6
|
+
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500');// stylelint-disable-line no-invalid-position-at-import-rule
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
$is-roboto-loaded: 'true' !default;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
@if not variable-exists('is-roboto-loaded') {
|
|
5
5
|
//sass-lint:disable no-url-protocols,no-url-domains
|
|
6
|
-
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500')
|
|
6
|
+
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500');// stylelint-disable-line no-invalid-position-at-import-rule
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
$is-roboto-loaded: 'true' !default;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
@if not variable-exists('is-inter-loaded') {
|
|
5
5
|
//sass-lint:disable no-url-protocols,no-url-domains
|
|
6
|
-
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap')
|
|
6
|
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');// stylelint-disable-line no-invalid-position-at-import-rule
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
$font-family: 'Inter' !default;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
@if not variable-exists('is-inter-loaded') {
|
|
5
5
|
//sass-lint:disable no-url-protocols,no-url-domains
|
|
6
|
-
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap')
|
|
6
|
+
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');// stylelint-disable-line no-invalid-position-at-import-rule
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
$font-family: 'Inter' !default;
|