ng-talkback 19.0.19 → 19.0.20
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/browser/package.json +1 -1
- package/client/package.json +1 -1
- package/lib/build-info._auto-generated_.d.ts +1 -1
- package/lib/build-info._auto-generated_.js +1 -1
- package/package.json +6 -1
- package/scss/global.scss +44 -0
- package/scss/index.scss +2 -0
- package/scss/lib/index.scss +1 -0
- package/tmp-environment.json +6 -6
- package/websql/package.json +1 -1
package/browser/package.json
CHANGED
package/client/package.json
CHANGED
|
@@ -4,6 +4,6 @@ exports.CURRENT_PACKAGE_VERSION = exports.PROJECT_NPM_NAME = exports.BUILD_FRAME
|
|
|
4
4
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
5
5
|
exports.BUILD_FRAMEWORK_CLI_NAME = 'tnp';
|
|
6
6
|
exports.PROJECT_NPM_NAME = 'ng-talkback';
|
|
7
|
-
exports.CURRENT_PACKAGE_VERSION = '19.0.
|
|
7
|
+
exports.CURRENT_PACKAGE_VERSION = '19.0.20';
|
|
8
8
|
// THIS FILE IS GENERATED - DO NOT MODIFY
|
|
9
9
|
//# sourceMappingURL=build-info._auto-generated_.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ng-talkback",
|
|
3
|
-
"version": "19.0.
|
|
3
|
+
"version": "19.0.20",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"build": "node tools/build.js",
|
|
6
6
|
"ci": "yarn ts-check && yarn test && yarn build && USE_DIST=1 yarn test",
|
|
@@ -48,5 +48,10 @@
|
|
|
48
48
|
"url": "https://github.com/darekf77/ng-talkback"
|
|
49
49
|
},
|
|
50
50
|
"bin": {},
|
|
51
|
+
"exports": {
|
|
52
|
+
".": {
|
|
53
|
+
"style": "./scss/index.scss"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
51
56
|
"peerDependencies": {}
|
|
52
57
|
}
|
package/scss/global.scss
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
@use './vars.scss' as vars;
|
|
2
|
+
@use 'primeflex/primeflex.scss';
|
|
3
|
+
/* You can add global styles to this file, and also import other style files */
|
|
4
|
+
@import '~@angular/material/prebuilt-themes/indigo-pink.css';
|
|
5
|
+
|
|
6
|
+
// @import "primeng/resources/themes/lara-light-blue/theme.css"; // not needed anymore
|
|
7
|
+
// @import "primeng/resources/primeng.css"; // not needed anymore
|
|
8
|
+
@import 'primeicons/primeicons.css';
|
|
9
|
+
@import 'animate.css/animate.min.css';
|
|
10
|
+
|
|
11
|
+
@font-face {
|
|
12
|
+
font-family: 'Material Icons';
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-weight: 400;
|
|
15
|
+
src: url("#{ vars.$basename }assets/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2")
|
|
16
|
+
format('woff2');
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.material-icons {
|
|
20
|
+
font-family: 'Material Icons';
|
|
21
|
+
font-weight: normal;
|
|
22
|
+
font-style: normal;
|
|
23
|
+
font-size: 24px;
|
|
24
|
+
line-height: 1;
|
|
25
|
+
letter-spacing: normal;
|
|
26
|
+
text-transform: none;
|
|
27
|
+
display: inline-block;
|
|
28
|
+
white-space: nowrap;
|
|
29
|
+
word-wrap: normal;
|
|
30
|
+
direction: ltr;
|
|
31
|
+
-webkit-font-feature-settings: 'liga';
|
|
32
|
+
-webkit-font-smoothing: antialiased;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.ng-scroll-content {
|
|
36
|
+
// TODO QUICK_FIX for modal mode
|
|
37
|
+
display: block !important;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
// TODO QUICK FIX for weird chrome padding
|
|
41
|
+
body {
|
|
42
|
+
margin: 0px !important;
|
|
43
|
+
overflow: hidden;
|
|
44
|
+
}
|
package/scss/index.scss
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// EXPORT SCSS STYLES FOR THIS LIBRARY IN THIS FILE
|
package/tmp-environment.json
CHANGED
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"only": []
|
|
10
10
|
},
|
|
11
11
|
"ports": {
|
|
12
|
-
"ngNormalAppPort":
|
|
13
|
-
"ngWebsqlAppPort":
|
|
14
|
-
"nodeBeAppPort":
|
|
12
|
+
"ngNormalAppPort": 4243,
|
|
13
|
+
"ngWebsqlAppPort": 4244,
|
|
14
|
+
"nodeBeAppPort": 4119
|
|
15
15
|
},
|
|
16
16
|
"init": {},
|
|
17
17
|
"build": {
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"releaseType": "manual",
|
|
31
31
|
"targetArtifact": "npm-lib-and-cli-tool",
|
|
32
32
|
"envName": "__",
|
|
33
|
-
"resolvedNewVersion": "19.0.
|
|
33
|
+
"resolvedNewVersion": "19.0.20"
|
|
34
34
|
},
|
|
35
35
|
"copyToManager": {},
|
|
36
36
|
"buildInfo": {
|
|
37
|
-
"date": "2025-05-
|
|
38
|
-
"hash": "
|
|
37
|
+
"date": "2025-05-24T17:28:42.000Z",
|
|
38
|
+
"hash": "052c818a5f3e2a763f702c51bdaa14b962d7778d"
|
|
39
39
|
},
|
|
40
40
|
"currentProjectName": "ng-talkback",
|
|
41
41
|
"currentProjectType": "isomorphic-lib",
|