@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.
- package/CHANGELOG.md +1027 -0
- package/README.md +10 -0
- package/bin/ci-commit-snapshots +66 -0
- package/bin/ci-semantic-release +44 -0
- package/bin/ci-utils +25 -0
- package/docs-layout.hbs +48 -0
- package/docs-public/bootstrap.css +6759 -0
- package/docs-public/bootstrap.min.js +7 -0
- package/docs-public/codemirror/clike.min.js +1 -0
- package/docs-public/codemirror/codemirror.min.js +5 -0
- package/docs-public/codemirror/css.min.js +1 -0
- package/docs-public/codemirror/htmlmixed.min.js +1 -0
- package/docs-public/codemirror/javascript.min.js +1 -0
- package/docs-public/codemirror/jsx.min.js +1 -0
- package/docs-public/codemirror/php.min.js +1 -0
- package/docs-public/codemirror/runmode.min.js +1 -0
- package/docs-public/codemirror/xml.min.js +1 -0
- package/docs-public/docs.css +209 -0
- package/docs-public/docs.scss +254 -0
- package/docs-public/editor/angular/app/app.component.ts +3 -0
- package/docs-public/editor/angular/app/app.module.ts +14 -0
- package/docs-public/editor/angular/index.html +32 -0
- package/docs-public/editor/angular/main.ts +15 -0
- package/docs-public/editor/angular/polyfills.ts +73 -0
- package/docs-public/editor/angular/styles.css +13 -0
- package/docs-public/editor/builder/app/app.component.html +1 -0
- package/docs-public/editor/builder/app/app.component.ts +17 -0
- package/docs-public/editor/builder/app/app.css +449 -0
- package/docs-public/editor/builder/app/app.module.ts +53 -0
- package/docs-public/editor/builder/app/core/core.module.ts +19 -0
- package/docs-public/editor/builder/app/core/data/data-services.exports.ts +71 -0
- package/docs-public/editor/builder/app/core/data/data.service.ts +183 -0
- package/docs-public/editor/builder/app/core/data/odata-service-factory.ts +23 -0
- package/docs-public/editor/builder/app/core/data/odata.service.ts +88 -0
- package/docs-public/editor/builder/app/core/module.config.ts +19 -0
- package/docs-public/editor/builder/app/data/odata-provider/customer.config.ts +17 -0
- package/docs-public/editor/builder/app/data/odata-provider/customer.model.ts +17 -0
- package/docs-public/editor/builder/app/grid-demo.base.component.ts +107 -0
- package/docs-public/editor/builder/app/grid-demo.component.html +37 -0
- package/docs-public/editor/builder/app/grid-demo.component.ts +1 -0
- package/docs-public/editor/builder/app/shared/components/grid/grid.component.html +5 -0
- package/docs-public/editor/builder/app/shared/components/grid/grid.component.ts +243 -0
- package/docs-public/editor/builder/app/shared/services/grid-incell-editing.service.ts +120 -0
- package/docs-public/editor/builder/app/topSection.html +12 -0
- package/docs-public/editor/builder/app/topSection.ts +25 -0
- package/docs-public/editor/builder/assets/themes/metro.css +18877 -0
- package/docs-public/editor/builder/index.html +14 -0
- package/docs-public/editor/builder/main.ts +14 -0
- package/docs-public/editor/builder/polyfills.ts +67 -0
- package/docs-public/editor/builder/styles.css +1 -0
- package/docs-public/editor/builder/tsconfig.app.json +13 -0
- package/docs-public/editor/builder/typings.d.ts +5 -0
- package/docs-public/editor/react/app/main.jsx +6 -0
- package/docs-public/editor/react/index.html +32 -0
- package/docs-public/editor/vue/app/main.js +5 -0
- package/docs-public/editor/vue/index.html +29 -0
- package/docs-public/example-runner.js +802 -0
- package/docs-public/github.css +99 -0
- package/docs-public/snippets.js +1722 -0
- package/docs-public/tomorrow-night.css +75 -0
- package/docs-server.js +153 -0
- package/index.js +305 -0
- package/lint-slugs.js +25 -0
- package/markdown-serve/index.js +10 -0
- package/markdown-serve/parser.js +234 -0
- package/markdown-serve/resolver.js +86 -0
- package/markdown-serve/server.js +370 -0
- package/package.json +95 -0
- package/progress-kendo-common-tasks-7.7.0.tgz +0 -0
- package/stub-loader.js +3 -0
- package/systemjs-bundle/systemjs-bundle.template.js +16 -0
- package/systemjs-bundle/task.js +37 -0
- package/tasks/package-metadata.js +68 -0
- package/test/jest-setup.js +2 -0
- package/test/snippets.test.js +373 -0
- 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
|
+
}
|