@progress/kendo-common-tasks 7.7.1-esbuild.16

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.
Files changed (76) hide show
  1. package/CHANGELOG.md +1027 -0
  2. package/README.md +10 -0
  3. package/bin/ci-commit-snapshots +66 -0
  4. package/bin/ci-semantic-release +44 -0
  5. package/bin/ci-utils +25 -0
  6. package/docs-layout.hbs +48 -0
  7. package/docs-public/bootstrap.css +6759 -0
  8. package/docs-public/bootstrap.min.js +7 -0
  9. package/docs-public/codemirror/clike.min.js +1 -0
  10. package/docs-public/codemirror/codemirror.min.js +5 -0
  11. package/docs-public/codemirror/css.min.js +1 -0
  12. package/docs-public/codemirror/htmlmixed.min.js +1 -0
  13. package/docs-public/codemirror/javascript.min.js +1 -0
  14. package/docs-public/codemirror/jsx.min.js +1 -0
  15. package/docs-public/codemirror/php.min.js +1 -0
  16. package/docs-public/codemirror/runmode.min.js +1 -0
  17. package/docs-public/codemirror/xml.min.js +1 -0
  18. package/docs-public/docs.css +209 -0
  19. package/docs-public/docs.scss +254 -0
  20. package/docs-public/editor/angular/app/app.component.ts +3 -0
  21. package/docs-public/editor/angular/app/app.module.ts +14 -0
  22. package/docs-public/editor/angular/index.html +32 -0
  23. package/docs-public/editor/angular/main.ts +15 -0
  24. package/docs-public/editor/angular/polyfills.ts +73 -0
  25. package/docs-public/editor/angular/styles.css +13 -0
  26. package/docs-public/editor/builder/app/app.component.html +1 -0
  27. package/docs-public/editor/builder/app/app.component.ts +17 -0
  28. package/docs-public/editor/builder/app/app.css +449 -0
  29. package/docs-public/editor/builder/app/app.module.ts +53 -0
  30. package/docs-public/editor/builder/app/core/core.module.ts +19 -0
  31. package/docs-public/editor/builder/app/core/data/data-services.exports.ts +71 -0
  32. package/docs-public/editor/builder/app/core/data/data.service.ts +183 -0
  33. package/docs-public/editor/builder/app/core/data/odata-service-factory.ts +23 -0
  34. package/docs-public/editor/builder/app/core/data/odata.service.ts +88 -0
  35. package/docs-public/editor/builder/app/core/module.config.ts +19 -0
  36. package/docs-public/editor/builder/app/data/odata-provider/customer.config.ts +17 -0
  37. package/docs-public/editor/builder/app/data/odata-provider/customer.model.ts +17 -0
  38. package/docs-public/editor/builder/app/grid-demo.base.component.ts +107 -0
  39. package/docs-public/editor/builder/app/grid-demo.component.html +37 -0
  40. package/docs-public/editor/builder/app/grid-demo.component.ts +1 -0
  41. package/docs-public/editor/builder/app/shared/components/grid/grid.component.html +5 -0
  42. package/docs-public/editor/builder/app/shared/components/grid/grid.component.ts +243 -0
  43. package/docs-public/editor/builder/app/shared/services/grid-incell-editing.service.ts +120 -0
  44. package/docs-public/editor/builder/app/topSection.html +12 -0
  45. package/docs-public/editor/builder/app/topSection.ts +25 -0
  46. package/docs-public/editor/builder/assets/themes/metro.css +18877 -0
  47. package/docs-public/editor/builder/index.html +14 -0
  48. package/docs-public/editor/builder/main.ts +14 -0
  49. package/docs-public/editor/builder/polyfills.ts +67 -0
  50. package/docs-public/editor/builder/styles.css +1 -0
  51. package/docs-public/editor/builder/tsconfig.app.json +13 -0
  52. package/docs-public/editor/builder/typings.d.ts +5 -0
  53. package/docs-public/editor/react/app/main.jsx +6 -0
  54. package/docs-public/editor/react/index.html +32 -0
  55. package/docs-public/editor/vue/app/main.js +5 -0
  56. package/docs-public/editor/vue/index.html +29 -0
  57. package/docs-public/example-runner.js +802 -0
  58. package/docs-public/github.css +99 -0
  59. package/docs-public/snippets.js +1722 -0
  60. package/docs-public/tomorrow-night.css +75 -0
  61. package/docs-server.js +153 -0
  62. package/index.js +305 -0
  63. package/lint-slugs.js +25 -0
  64. package/markdown-serve/index.js +10 -0
  65. package/markdown-serve/parser.js +234 -0
  66. package/markdown-serve/resolver.js +86 -0
  67. package/markdown-serve/server.js +370 -0
  68. package/package.json +95 -0
  69. package/progress-kendo-common-tasks-7.7.0.tgz +0 -0
  70. package/stub-loader.js +3 -0
  71. package/systemjs-bundle/systemjs-bundle.template.js +16 -0
  72. package/systemjs-bundle/task.js +37 -0
  73. package/tasks/package-metadata.js +68 -0
  74. package/test/jest-setup.js +2 -0
  75. package/test/snippets.test.js +373 -0
  76. package/verify-modules.js +60 -0
@@ -0,0 +1,99 @@
1
+ /*
2
+
3
+ github.com style (c) Vasily Polovnyov <vast@whiteants.net>
4
+
5
+ */
6
+
7
+ .hljs {
8
+ display: block;
9
+ overflow-x: auto;
10
+ padding: 0.5em;
11
+ color: #333;
12
+ background: #f8f8f8;
13
+ }
14
+
15
+ .hljs-comment,
16
+ .hljs-quote {
17
+ color: #998;
18
+ font-style: italic;
19
+ }
20
+
21
+ .hljs-keyword,
22
+ .hljs-selector-tag,
23
+ .hljs-subst {
24
+ color: #333;
25
+ font-weight: bold;
26
+ }
27
+
28
+ .hljs-number,
29
+ .hljs-literal,
30
+ .hljs-variable,
31
+ .hljs-template-variable,
32
+ .hljs-tag .hljs-attr {
33
+ color: #008080;
34
+ }
35
+
36
+ .hljs-string,
37
+ .hljs-doctag {
38
+ color: #d14;
39
+ }
40
+
41
+ .hljs-title,
42
+ .hljs-section,
43
+ .hljs-selector-id {
44
+ color: #900;
45
+ font-weight: bold;
46
+ }
47
+
48
+ .hljs-subst {
49
+ font-weight: normal;
50
+ }
51
+
52
+ .hljs-type,
53
+ .hljs-class .hljs-title {
54
+ color: #458;
55
+ font-weight: bold;
56
+ }
57
+
58
+ .hljs-tag,
59
+ .hljs-name,
60
+ .hljs-attribute {
61
+ color: #000080;
62
+ font-weight: normal;
63
+ }
64
+
65
+ .hljs-regexp,
66
+ .hljs-link {
67
+ color: #009926;
68
+ }
69
+
70
+ .hljs-symbol,
71
+ .hljs-bullet {
72
+ color: #990073;
73
+ }
74
+
75
+ .hljs-built_in,
76
+ .hljs-builtin-name {
77
+ color: #0086b3;
78
+ }
79
+
80
+ .hljs-meta {
81
+ color: #999;
82
+ font-weight: bold;
83
+ }
84
+
85
+ .hljs-deletion {
86
+ background: #fdd;
87
+ }
88
+
89
+ .hljs-addition {
90
+ background: #dfd;
91
+ }
92
+
93
+ .hljs-emphasis {
94
+ font-style: italic;
95
+ }
96
+
97
+ .hljs-strong {
98
+ font-weight: bold;
99
+ }