kn-cli 1.0.28 → 1.0.30
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/build/webpack.config.js +8 -4
- package/package.json +1 -1
- package/readme.md +5 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/lru-cache/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/lru-cache/README.md +166 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/lru-cache/index.js +334 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/lru-cache/package.json +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/README.md +568 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/bin/semver.js +183 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/classes/comparator.js +136 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/classes/index.js +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/classes/range.js +519 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/classes/semver.js +287 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/clean.js +6 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/cmp.js +52 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/coerce.js +52 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/compare-build.js +7 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/compare-loose.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/compare.js +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/diff.js +23 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/eq.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/gt.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/gte.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/inc.js +18 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/lt.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/lte.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/major.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/minor.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/neq.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/parse.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/patch.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/prerelease.js +6 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/rcompare.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/rsort.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/satisfies.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/sort.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/functions/valid.js +6 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/index.js +48 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/internal/constants.js +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/internal/debug.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/internal/identifiers.js +23 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/internal/parse-options.js +11 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/internal/re.js +182 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/package.json +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/preload.js +2 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/range.bnf +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/gtr.js +4 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/intersects.js +7 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/ltr.js +4 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/min-version.js +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/outside.js +80 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/simplify.js +47 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/subset.js +244 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/to-comparators.js +8 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/fs/node_modules/semver/ranges/valid.js +11 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/move-file/node_modules/rimraf/CHANGELOG.md +65 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/move-file/node_modules/rimraf/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/move-file/node_modules/rimraf/README.md +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/move-file/node_modules/rimraf/bin.js +68 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/move-file/node_modules/rimraf/package.json +70 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/@npmcli/move-file/node_modules/rimraf/rimraf.js +360 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/README.md +481 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/package.json +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/src/browser.js +269 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/src/common.js +274 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/src/index.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/debug/src/node.js +263 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/ms/index.js +162 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/ms/license.md +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/ms/package.json +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agent-base/node_modules/ms/readme.md +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/README.md +481 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/package.json +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/src/browser.js +269 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/src/common.js +274 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/src/index.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/debug/src/node.js +263 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/ms/index.js +162 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/ms/license.md +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/ms/package.json +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/agentkeepalive/node_modules/ms/readme.md +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/anymatch/node_modules/normalize-path/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/anymatch/node_modules/normalize-path/README.md +92 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/anymatch/node_modules/normalize-path/index.js +19 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/anymatch/node_modules/normalize-path/package.json +117 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/LICENSE +47 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/README.md +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/errors-browser.js +127 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/errors.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/package.json +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/readable-browser.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/are-we-there-yet/node_modules/readable-stream/readable.js +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-last/node_modules/is-number/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-last/node_modules/is-number/README.md +135 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-last/node_modules/is-number/index.js +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-last/node_modules/is-number/package.json +113 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-sort/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-sort/node_modules/kind-of/README.md +342 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-sort/node_modules/kind-of/index.js +147 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-sort/node_modules/kind-of/package.json +146 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/define-property/README.md +95 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/define-property/package.json +93 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-accessor-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-accessor-descriptor/README.md +144 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-accessor-descriptor/index.js +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-accessor-descriptor/package.json +110 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-data-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-data-descriptor/README.md +161 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-data-descriptor/index.js +49 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-data-descriptor/package.json +109 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-descriptor/README.md +193 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-descriptor/index.js +22 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/base/node_modules/is-descriptor/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/braces/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/braces/node_modules/extend-shallow/README.md +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/braces/node_modules/extend-shallow/index.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/braces/node_modules/extend-shallow/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/brace-expansion/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/brace-expansion/README.md +135 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/brace-expansion/index.js +203 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/brace-expansion/package.json +74 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/README.md +378 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/common.js +240 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/glob.js +790 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/package.json +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/glob/sync.js +486 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/minimatch/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/minimatch/README.md +259 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/minimatch/lib/path.js +4 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/minimatch/minimatch.js +906 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/minimatch/package.json +65 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/CHANGELOG.md +65 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/README.md +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/bin.js +68 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/brace-expansion/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/brace-expansion/README.md +129 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/brace-expansion/index.js +201 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/brace-expansion/package.json +75 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/glob/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/glob/README.md +378 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/glob/common.js +238 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/glob/glob.js +790 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/glob/package.json +88 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/glob/sync.js +486 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/minimatch/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/minimatch/README.md +230 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/minimatch/minimatch.js +947 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/node_modules/minimatch/package.json +66 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/package.json +78 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/cacache/node_modules/rimraf/rimraf.js +360 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/class-utils/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/class-utils/node_modules/define-property/README.md +77 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/class-utils/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/class-utils/node_modules/define-property/package.json +82 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/console-control-strings/README.md~ +140 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/copy-props/node_modules/is-plain-object/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/copy-props/node_modules/is-plain-object/README.md +125 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/copy-props/node_modules/is-plain-object/dist/is-plain-object.js +38 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/copy-props/node_modules/is-plain-object/dist/is-plain-object.mjs +34 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/copy-props/node_modules/is-plain-object/is-plain-object.d.ts +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/copy-props/node_modules/is-plain-object/package.json +130 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/default-compare/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/default-compare/node_modules/kind-of/README.md +342 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/default-compare/node_modules/kind-of/index.js +147 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/default-compare/node_modules/kind-of/package.json +146 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-accessor-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-accessor-descriptor/README.md +144 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-accessor-descriptor/index.js +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-accessor-descriptor/package.json +110 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-data-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-data-descriptor/README.md +161 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-data-descriptor/index.js +49 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-data-descriptor/package.json +109 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-descriptor/README.md +193 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-descriptor/index.js +22 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/define-property/node_modules/is-descriptor/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/define-property/README.md +77 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/define-property/package.json +82 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/extend-shallow/README.md +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/extend-shallow/index.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/expand-brackets/node_modules/extend-shallow/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extend-shallow/node_modules/is-extendable/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extend-shallow/node_modules/is-extendable/README.md +88 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extend-shallow/node_modules/is-extendable/index.d.ts +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extend-shallow/node_modules/is-extendable/index.js +14 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extend-shallow/node_modules/is-extendable/package.json +98 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/define-property/README.md +95 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/define-property/package.json +93 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/extend-shallow/README.md +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/extend-shallow/index.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/extend-shallow/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-accessor-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-accessor-descriptor/README.md +144 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-accessor-descriptor/index.js +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-accessor-descriptor/package.json +110 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-data-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-data-descriptor/README.md +161 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-data-descriptor/index.js +49 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-data-descriptor/package.json +109 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-descriptor/README.md +193 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-descriptor/index.js +22 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/node_modules/is-descriptor/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/fill-range/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/fill-range/node_modules/extend-shallow/README.md +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/fill-range/node_modules/extend-shallow/index.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/fill-range/node_modules/extend-shallow/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/ansi-regex/index.d.ts +37 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/ansi-regex/index.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/ansi-regex/license +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/ansi-regex/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/ansi-regex/readme.md +78 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/is-fullwidth-code-point/license +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/is-fullwidth-code-point/package.json +74 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/string-width/index.d.ts +29 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/string-width/index.js +47 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/string-width/license +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/string-width/package.json +88 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/string-width/readme.md +50 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/strip-ansi/index.d.ts +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/strip-ansi/index.js +4 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/strip-ansi/license +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/strip-ansi/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gauge/node_modules/strip-ansi/readme.md +46 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/glob-parent/node_modules/is-glob/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/glob-parent/node_modules/is-glob/README.md +142 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/glob-parent/node_modules/is-glob/index.js +25 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/glob-parent/node_modules/is-glob/package.json +119 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/README.md +240 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/bin/gulp.js +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/completion/README.md +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/completion/bash +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/completion/fish +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/completion/powershell +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/completion/zsh +25 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/gulp.1 +83 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/index.js +212 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/ansi.js +41 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/cli-options.js +122 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/completion.js +22 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/config/cli-flags.js +25 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/config/env-flags.js +44 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/config/load-files.js +30 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/exit.js +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/get-blacklist.js +62 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/log/blacklist-error.js +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/log/copy-tree.js +81 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/log/tasks.js +166 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/log/to-console.js +58 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/log/verify.js +28 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/make-title.js +11 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/register-exports.js +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/require-or-import.js +32 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/tildify.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/shared/verify-dependencies.js +25 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^3.7.0/format-error.js +23 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^3.7.0/index.js +83 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^3.7.0/log/events.js +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^3.7.0/log/tasks-simple.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^3.7.0/task-tree.js +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/format-error.js +24 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/index.js +96 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/log/events.js +50 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/log/get-task.js +43 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/log/sync-task.js +52 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/log/tasks-simple.js +7 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0-alpha.1/index.js +96 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0-alpha.2/index.js +96 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp/node_modules/gulp-cli/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/CHANGELOG.md +184 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/README.md +593 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/index.js +170 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/lib/compile.js +57 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/lib/constants.js +57 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/lib/expand.js +113 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/lib/parse.js +333 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/lib/stringify.js +32 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/lib/utils.js +112 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/braces/package.json +123 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/fill-range/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/fill-range/README.md +237 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/fill-range/index.js +249 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/fill-range/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/findup-sync/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/findup-sync/README.md +59 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/findup-sync/index.js +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/findup-sync/package.json +105 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/is-number/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/is-number/README.md +187 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/is-number/index.js +18 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/is-number/package.json +122 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/micromatch/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/micromatch/README.md +1011 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/micromatch/index.js +467 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/micromatch/package.json +196 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/to-regex-range/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/to-regex-range/README.md +305 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/to-regex-range/index.js +288 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-load-plugins/node_modules/to-regex-range/package.json +125 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone/LICENSE +18 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone/README.md +126 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone/clone.iml +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone/clone.js +166 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone/package.json +137 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone-stats/LICENSE.md +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone-stats/README.md +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone-stats/index.js +13 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone-stats/package.json +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/clone-stats/test.js +36 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/.travis.yml +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/History.md +25 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/Makefile +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/Readme.md +102 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/index.js +72 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/package.json +48 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/multipipe/test/multipipe.js +141 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/replace-ext/.travis.yml +8 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/replace-ext/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/replace-ext/README.md +44 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/replace-ext/index.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/replace-ext/package.json +68 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/replace-ext/test/main.js +51 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/README.md +195 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/index.js +213 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/lib/cloneBuffer.js +7 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/lib/inspectStream.js +11 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/lib/isBuffer.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/lib/isNull.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/lib/isStream.js +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-util/node_modules/vinyl/package.json +72 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/has-values/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/has-values/node_modules/kind-of/README.md +267 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/has-values/node_modules/kind-of/index.js +119 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/has-values/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/README.md +481 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/package.json +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/src/browser.js +269 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/src/common.js +274 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/src/index.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/debug/src/node.js +263 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/ms/index.js +162 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/ms/license.md +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/ms/package.json +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/http-proxy-agent/node_modules/ms/readme.md +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/README.md +481 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/package.json +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/src/browser.js +269 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/src/common.js +274 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/src/index.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/debug/src/node.js +263 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/ms/index.js +162 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/ms/license.md +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/ms/package.json +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/https-proxy-agent/node_modules/ms/readme.md +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-accessor-descriptor/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-accessor-descriptor/node_modules/kind-of/README.md +261 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-accessor-descriptor/node_modules/kind-of/index.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-accessor-descriptor/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-data-descriptor/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-data-descriptor/node_modules/kind-of/README.md +261 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-data-descriptor/node_modules/kind-of/index.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-data-descriptor/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-descriptor/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-descriptor/node_modules/kind-of/README.md +342 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-descriptor/node_modules/kind-of/index.js +147 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-descriptor/node_modules/kind-of/package.json +146 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-number/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-number/node_modules/kind-of/README.md +261 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-number/node_modules/kind-of/index.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-number/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/mixin-deep/node_modules/is-extendable/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/mixin-deep/node_modules/is-extendable/README.md +88 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/mixin-deep/node_modules/is-extendable/index.d.ts +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/mixin-deep/node_modules/is-extendable/index.js +14 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/mixin-deep/node_modules/is-extendable/package.json +98 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/define-property/README.md +77 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/define-property/package.json +82 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/kind-of/README.md +261 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/kind-of/index.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/object-copy/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/LICENSE +47 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/README.md +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/errors-browser.js +127 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/errors.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/package.json +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/readable-browser.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plexer/node_modules/readable-stream/readable.js +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-diff/LICENSE +24 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-diff/README.md +75 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-diff/index.js +58 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-diff/package.json +80 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-union/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-union/README.md +85 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-union/index.js +30 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/arr-union/package.json +78 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/array-slice/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/array-slice/README.md +54 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/array-slice/index.js +36 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/array-slice/package.json +68 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/extend-shallow/README.md +59 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/extend-shallow/index.js +36 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/extend-shallow/package.json +85 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/kind-of/README.md +155 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/kind-of/index.js +45 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/plugin-error/node_modules/kind-of/package.json +86 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/set-value/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/set-value/node_modules/extend-shallow/README.md +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/set-value/node_modules/extend-shallow/index.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/set-value/node_modules/extend-shallow/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/define-property/README.md +77 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/define-property/package.json +82 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/extend-shallow/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/extend-shallow/README.md +61 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/extend-shallow/index.js +33 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon/node_modules/extend-shallow/package.json +87 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/define-property/README.md +95 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/define-property/package.json +93 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/README.md +144 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/index.js +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-accessor-descriptor/package.json +110 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-data-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-data-descriptor/README.md +161 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-data-descriptor/index.js +49 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-data-descriptor/package.json +109 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-descriptor/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-descriptor/README.md +193 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-descriptor/index.js +22 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-node/node_modules/is-descriptor/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-util/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-util/node_modules/kind-of/README.md +261 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-util/node_modules/kind-of/index.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/snapdragon-util/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/README.md +481 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/package.json +101 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/src/browser.js +269 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/src/common.js +274 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/src/index.js +10 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/debug/src/node.js +263 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/ms/index.js +162 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/ms/license.md +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/ms/package.json +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/socks-proxy-agent/node_modules/ms/readme.md +60 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/static-extend/node_modules/define-property/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/static-extend/node_modules/define-property/README.md +77 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/static-extend/node_modules/define-property/index.js +31 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/static-extend/node_modules/define-property/package.json +82 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/LICENSE +47 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/README.md +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/errors-browser.js +127 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/errors.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/package.json +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/readable-browser.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/streamfilter/node_modules/readable-stream/readable.js +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/brace-expansion/.github/FUNDING.yml +2 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/brace-expansion/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/brace-expansion/README.md +135 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/brace-expansion/index.js +203 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/brace-expansion/package.json +74 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/LICENSE +22 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/Readme.md +1114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/esm.mjs +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/index.js +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/lib/argument.js +147 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/lib/command.js +2135 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/lib/error.js +45 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/lib/help.js +406 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/lib/option.js +324 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/lib/suggestSimilar.js +100 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/package-support.json +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/package.json +121 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/commander/typings/index.d.ts +879 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob/README.md +378 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob/common.js +240 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob/glob.js +790 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob/package.json +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/glob/sync.js +486 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/minimatch/LICENSE +15 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/minimatch/README.md +259 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/minimatch/lib/path.js +4 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/minimatch/minimatch.js +906 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/minimatch/package.json +65 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/CHANGELOG.md +248 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/README.md +162 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/index.d.ts +2 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/karma.conf.js +69 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathData.cjs +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathData.cjs.map +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathData.d.ts +43 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathData.module.js +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathData.module.js.map +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathDataEncoder.d.ts +2 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathDataParser.d.ts +19 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/SVGPathDataTransformer.d.ts +28 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/TransformableSVG.d.ts +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/mathUtils.d.ts +28 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/lib/types.d.ts +75 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/package.json +132 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/SVGPathData.ts +90 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/SVGPathDataEncoder.ts +62 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/SVGPathDataParser.ts +290 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/SVGPathDataTransformer.ts +620 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/TransformableSVG.ts +74 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/mathUtils.ts +200 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/src/types.ts +41 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/tsconfig.json +67 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgicons2svgfont/node_modules/svg-pathdata/tslint.json +19 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/to-object-path/node_modules/kind-of/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/to-object-path/node_modules/kind-of/README.md +261 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/to-object-path/node_modules/kind-of/index.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/to-object-path/node_modules/kind-of/package.json +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Makefile +342 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/addon.node.d +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/addon.o.d +55 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/backward_references.o.d +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/block_splitter.o.d +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/brotli_bit_stream.o.d +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/encode.o.d +39 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/encode_parallel.o.d +41 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/entropy_encode.o.d +11 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/histogram.o.d +14 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/literal_cost.o.d +7 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/metablock.o.d +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/enc/streams.o.d +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/font.o.d +12 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/glyph.o.d +8 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/normalize.o.d +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/table_tags.o.d +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/transform.o.d +13 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/variable_length.o.d +7 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/woff2_common.o.d +5 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/.deps/Release/obj.target/addon/csrc/woff2/woff2_enc.o.d +42 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/addon.node +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/addon.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/backward_references.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/block_splitter.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/brotli_bit_stream.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/encode.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/encode_parallel.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/entropy_encode.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/histogram.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/literal_cost.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/metablock.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/enc/streams.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/font.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/glyph.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/normalize.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/table_tags.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/transform.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/variable_length.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/woff2_common.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/Release/obj.target/addon/csrc/woff2/woff2_enc.o +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/addon.target.mk +208 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/binding.Makefile +6 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/config.gypi +224 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/build/gyp-mac-tool +611 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/builderror.log +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/bufferstreams/CHANGELOG.md +86 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/bufferstreams/LICENSE +20 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/bufferstreams/README.md +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/bufferstreams/package.json +160 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/bufferstreams/src/index.js +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/LICENSE +47 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/README.md +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/errors-browser.js +127 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/errors.js +116 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/_stream_duplex.js +139 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/_stream_passthrough.js +39 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/_stream_readable.js +1124 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/_stream_transform.js +201 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/_stream_writable.js +697 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/async_iterator.js +207 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/buffer_list.js +210 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/destroy.js +105 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +104 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/from.js +64 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/pipeline.js +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/package.json +97 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/readable-browser.js +9 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/ttf2woff2/node_modules/readable-stream/readable.js +16 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/README.md +130 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/index.js +19 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/node_modules/isobject/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/node_modules/isobject/README.md +112 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/node_modules/isobject/index.js +14 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/node_modules/isobject/package.json +98 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-value/package.json +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-values/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-values/README.md +114 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-values/index.js +36 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/unset-value/node_modules/has-values/package.json +106 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/vinyl-sourcemap/node_modules/normalize-path/LICENSE +21 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/vinyl-sourcemap/node_modules/normalize-path/README.md +92 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/vinyl-sourcemap/node_modules/normalize-path/index.js +19 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/vinyl-sourcemap/node_modules/normalize-path/package.json +117 -0
- package/templates/.DS_Store +0 -0
- package/templates/dev/template_admin/.DS_Store +0 -0
- package/templates/dev/template_admin/public/.DS_Store +0 -0
- package/templates/dev/template_admin/public/pluginjs/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/assets/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/assets/iconfont/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/assets/images/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/components/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/components/Layout/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/components/Page/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/hooks/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/pages/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/services/.DS_Store +0 -0
- package/templates/dev/template_admin/public/src/utils/.DS_Store +0 -0
- package/templates/dev/template_admin/public/static/.DS_Store +0 -0
- package/templates/dev/template_admin/release/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/iconfont/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/iconfont/dist/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/array-initial/.npmignore +0 -59
- package/templates/dev/template_admin/tools/iconfont/node_modules/clone/.npmignore +0 -4
- package/templates/dev/template_admin/tools/iconfont/node_modules/dateformat/.npmignore +0 -2
- package/templates/dev/template_admin/tools/iconfont/node_modules/debug/.npmignore +0 -9
- package/templates/dev/template_admin/tools/iconfont/node_modules/delegates/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/duplexer2/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/es6-iterator/.npmignore +0 -12
- package/templates/dev/template_admin/tools/iconfont/node_modules/extglob/lib/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/file-uri-to-path/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/function-bind/.npmignore +0 -22
- package/templates/dev/template_admin/tools/iconfont/node_modules/geometry-interfaces/.npmignore +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-iconfont-css/.npmignore +0 -2
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-svg2ttf/.npmignore +0 -5
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-ttf2eot/.npmignore +0 -5
- package/templates/dev/template_admin/tools/iconfont/node_modules/gulp-ttf2woff/.npmignore +0 -5
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-arrayish/.npmignore +0 -5
- package/templates/dev/template_admin/tools/iconfont/node_modules/is-lambda/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/isarray/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/isexe/.npmignore +0 -2
- package/templates/dev/template_admin/tools/iconfont/node_modules/isstream/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/json-stable-stringify-without-jsonify/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/matchdep/.npmignore +0 -2
- package/templates/dev/template_admin/tools/iconfont/node_modules/microbuffer/.npmignore +0 -4
- package/templates/dev/template_admin/tools/iconfont/node_modules/micromatch/lib/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/iconfont/node_modules/neatequal/.npmignore +0 -5
- package/templates/dev/template_admin/tools/iconfont/node_modules/pretty-hrtime/.npmignore +0 -10
- package/templates/dev/template_admin/tools/iconfont/node_modules/rechoir/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/require-directory/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/require-main-filename/.npmignore +0 -3
- package/templates/dev/template_admin/tools/iconfont/node_modules/retry/.npmignore +0 -3
- package/templates/dev/template_admin/tools/iconfont/node_modules/sprintf-js/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/stack-trace/.npmignore +0 -1
- package/templates/dev/template_admin/tools/iconfont/node_modules/stream-combiner/.npmignore +0 -3
- package/templates/dev/template_admin/tools/iconfont/node_modules/sver-compat/.npmignore +0 -2
- package/templates/dev/template_admin/tools/iconfont/node_modules/svgfont2svgicons/.npmignore +0 -6
- package/templates/dev/template_admin/tools/iconfont/node_modules/varstream/.npmignore +0 -6
- package/templates/dev/template_admin/tools/iconfont/package-lock.json +0 -4736
- package/templates/dev/template_admin/tools/iconfont/svg/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/tinypng/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/tinypng/img/.DS_Store +0 -0
- package/templates/dev/template_admin/tools/tinypng/package-lock.json +0 -13
- package/templates/template_app/.gitignore +0 -6
|
@@ -0,0 +1,620 @@
|
|
|
1
|
+
// Transform SVG PathData
|
|
2
|
+
// http://www.w3.org/TR/SVG/paths.html#PathDataBNF
|
|
3
|
+
|
|
4
|
+
import { a2c, annotateArcCommand, arcAt, assertNumbers, bezierAt, bezierRoot,
|
|
5
|
+
intersectionUnitCircleLine } from "./mathUtils";
|
|
6
|
+
import { SVGPathData } from "./SVGPathData";
|
|
7
|
+
import { SVGCommand, TransformFunction } from "./types";
|
|
8
|
+
|
|
9
|
+
export namespace SVGPathDataTransformer {
|
|
10
|
+
// Predefined transforming functions
|
|
11
|
+
// Rounds commands values
|
|
12
|
+
export function ROUND(roundVal = 1e13) {
|
|
13
|
+
assertNumbers(roundVal);
|
|
14
|
+
function rf(val: number) { return Math.round(val * roundVal) / roundVal; }
|
|
15
|
+
return function round(command: any) {
|
|
16
|
+
if ("undefined" !== typeof command.x1) {
|
|
17
|
+
command.x1 = rf(command.x1);
|
|
18
|
+
}
|
|
19
|
+
if ("undefined" !== typeof command.y1) {
|
|
20
|
+
command.y1 = rf(command.y1);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
if ("undefined" !== typeof command.x2) {
|
|
24
|
+
command.x2 = rf(command.x2);
|
|
25
|
+
}
|
|
26
|
+
if ("undefined" !== typeof command.y2) {
|
|
27
|
+
command.y2 = rf(command.y2);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
if ("undefined" !== typeof command.x) {
|
|
31
|
+
command.x = rf(command.x);
|
|
32
|
+
}
|
|
33
|
+
if ("undefined" !== typeof command.y) {
|
|
34
|
+
command.y = rf(command.y);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
if ("undefined" !== typeof command.rX) {
|
|
38
|
+
command.rX = rf(command.rX);
|
|
39
|
+
}
|
|
40
|
+
if ("undefined" !== typeof command.rY) {
|
|
41
|
+
command.rY = rf(command.rY);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
return command;
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
// Relative to absolute commands
|
|
48
|
+
export function TO_ABS() {
|
|
49
|
+
return INFO((command, prevX, prevY) => {
|
|
50
|
+
if (command.relative) {
|
|
51
|
+
// x1/y1 values
|
|
52
|
+
if ("undefined" !== typeof command.x1) {
|
|
53
|
+
command.x1 += prevX;
|
|
54
|
+
}
|
|
55
|
+
if ("undefined" !== typeof command.y1) {
|
|
56
|
+
command.y1 += prevY;
|
|
57
|
+
}
|
|
58
|
+
// x2/y2 values
|
|
59
|
+
if ("undefined" !== typeof command.x2) {
|
|
60
|
+
command.x2 += prevX;
|
|
61
|
+
}
|
|
62
|
+
if ("undefined" !== typeof command.y2) {
|
|
63
|
+
command.y2 += prevY;
|
|
64
|
+
}
|
|
65
|
+
// Finally x/y values
|
|
66
|
+
if ("undefined" !== typeof command.x) {
|
|
67
|
+
command.x += prevX;
|
|
68
|
+
}
|
|
69
|
+
if ("undefined" !== typeof command.y) {
|
|
70
|
+
command.y += prevY;
|
|
71
|
+
}
|
|
72
|
+
command.relative = false;
|
|
73
|
+
}
|
|
74
|
+
return command;
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
// Absolute to relative commands
|
|
78
|
+
export function TO_REL() {
|
|
79
|
+
return INFO((command, prevX, prevY) => {
|
|
80
|
+
if (!command.relative) {
|
|
81
|
+
// x1/y1 values
|
|
82
|
+
if ("undefined" !== typeof command.x1) {
|
|
83
|
+
command.x1 -= prevX;
|
|
84
|
+
}
|
|
85
|
+
if ("undefined" !== typeof command.y1) {
|
|
86
|
+
command.y1 -= prevY;
|
|
87
|
+
}
|
|
88
|
+
// x2/y2 values
|
|
89
|
+
if ("undefined" !== typeof command.x2) {
|
|
90
|
+
command.x2 -= prevX;
|
|
91
|
+
}
|
|
92
|
+
if ("undefined" !== typeof command.y2) {
|
|
93
|
+
command.y2 -= prevY;
|
|
94
|
+
}
|
|
95
|
+
// Finally x/y values
|
|
96
|
+
if ("undefined" !== typeof command.x) {
|
|
97
|
+
command.x -= prevX;
|
|
98
|
+
}
|
|
99
|
+
if ("undefined" !== typeof command.y) {
|
|
100
|
+
command.y -= prevY;
|
|
101
|
+
}
|
|
102
|
+
command.relative = true;
|
|
103
|
+
}
|
|
104
|
+
return command;
|
|
105
|
+
});
|
|
106
|
+
}
|
|
107
|
+
// Convert H, V, Z and A with rX = 0 to L
|
|
108
|
+
export function NORMALIZE_HVZ(normalizeZ = true, normalizeH = true, normalizeV = true) {
|
|
109
|
+
return INFO((command, prevX, prevY, pathStartX, pathStartY) => {
|
|
110
|
+
if (isNaN(pathStartX) && !(command.type & SVGPathData.MOVE_TO)) {
|
|
111
|
+
throw new Error("path must start with moveto");
|
|
112
|
+
}
|
|
113
|
+
if (normalizeH && command.type & SVGPathData.HORIZ_LINE_TO) {
|
|
114
|
+
command.type = SVGPathData.LINE_TO;
|
|
115
|
+
command.y = command.relative ? 0 : prevY;
|
|
116
|
+
}
|
|
117
|
+
if (normalizeV && command.type & SVGPathData.VERT_LINE_TO) {
|
|
118
|
+
command.type = SVGPathData.LINE_TO;
|
|
119
|
+
command.x = command.relative ? 0 : prevX;
|
|
120
|
+
}
|
|
121
|
+
if (normalizeZ && command.type & SVGPathData.CLOSE_PATH) {
|
|
122
|
+
command.type = SVGPathData.LINE_TO;
|
|
123
|
+
command.x = command.relative ? pathStartX - prevX : pathStartX;
|
|
124
|
+
command.y = command.relative ? pathStartY - prevY : pathStartY;
|
|
125
|
+
}
|
|
126
|
+
if (command.type & SVGPathData.ARC && (0 === command.rX || 0 === command.rY)) {
|
|
127
|
+
command.type = SVGPathData.LINE_TO;
|
|
128
|
+
delete command.rX;
|
|
129
|
+
delete command.rY;
|
|
130
|
+
delete command.xRot;
|
|
131
|
+
delete command.lArcFlag;
|
|
132
|
+
delete command.sweepFlag;
|
|
133
|
+
}
|
|
134
|
+
return command;
|
|
135
|
+
});
|
|
136
|
+
}
|
|
137
|
+
/*
|
|
138
|
+
* Transforms smooth curves and quads to normal curves and quads (SsTt to CcQq)
|
|
139
|
+
*/
|
|
140
|
+
export function NORMALIZE_ST() {
|
|
141
|
+
let prevCurveC2X = NaN;
|
|
142
|
+
let prevCurveC2Y = NaN;
|
|
143
|
+
let prevQuadCX = NaN;
|
|
144
|
+
let prevQuadCY = NaN;
|
|
145
|
+
|
|
146
|
+
return INFO((command, prevX, prevY) => {
|
|
147
|
+
if (command.type & SVGPathData.SMOOTH_CURVE_TO) {
|
|
148
|
+
command.type = SVGPathData.CURVE_TO;
|
|
149
|
+
prevCurveC2X = isNaN(prevCurveC2X) ? prevX : prevCurveC2X;
|
|
150
|
+
prevCurveC2Y = isNaN(prevCurveC2Y) ? prevY : prevCurveC2Y;
|
|
151
|
+
command.x1 = command.relative ? prevX - prevCurveC2X : 2 * prevX - prevCurveC2X;
|
|
152
|
+
command.y1 = command.relative ? prevY - prevCurveC2Y : 2 * prevY - prevCurveC2Y;
|
|
153
|
+
}
|
|
154
|
+
if (command.type & SVGPathData.CURVE_TO) {
|
|
155
|
+
prevCurveC2X = command.relative ? prevX + command.x2 : command.x2;
|
|
156
|
+
prevCurveC2Y = command.relative ? prevY + command.y2 : command.y2;
|
|
157
|
+
} else {
|
|
158
|
+
prevCurveC2X = NaN;
|
|
159
|
+
prevCurveC2Y = NaN;
|
|
160
|
+
}
|
|
161
|
+
if (command.type & SVGPathData.SMOOTH_QUAD_TO) {
|
|
162
|
+
command.type = SVGPathData.QUAD_TO;
|
|
163
|
+
prevQuadCX = isNaN(prevQuadCX) ? prevX : prevQuadCX;
|
|
164
|
+
prevQuadCY = isNaN(prevQuadCY) ? prevY : prevQuadCY;
|
|
165
|
+
command.x1 = command.relative ? prevX - prevQuadCX : 2 * prevX - prevQuadCX;
|
|
166
|
+
command.y1 = command.relative ? prevY - prevQuadCY : 2 * prevY - prevQuadCY;
|
|
167
|
+
}
|
|
168
|
+
if (command.type & SVGPathData.QUAD_TO) {
|
|
169
|
+
prevQuadCX = command.relative ? prevX + command.x1 : command.x1;
|
|
170
|
+
prevQuadCY = command.relative ? prevY + command.y1 : command.y1;
|
|
171
|
+
} else {
|
|
172
|
+
prevQuadCX = NaN;
|
|
173
|
+
prevQuadCY = NaN;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
return command;
|
|
177
|
+
});
|
|
178
|
+
}
|
|
179
|
+
/*
|
|
180
|
+
* A quadratic bézier curve can be represented by a cubic bézier curve which has
|
|
181
|
+
* the same end points as the quadratic and both control points in place of the
|
|
182
|
+
* quadratic"s one.
|
|
183
|
+
*
|
|
184
|
+
* This transformer replaces QqTt commands with Cc commands respectively.
|
|
185
|
+
* This is useful for reading path data into a system which only has a
|
|
186
|
+
* representation for cubic curves.
|
|
187
|
+
*/
|
|
188
|
+
export function QT_TO_C() {
|
|
189
|
+
let prevQuadX1 = NaN;
|
|
190
|
+
let prevQuadY1 = NaN;
|
|
191
|
+
|
|
192
|
+
return INFO((command, prevX, prevY) => {
|
|
193
|
+
if (command.type & SVGPathData.SMOOTH_QUAD_TO) {
|
|
194
|
+
command.type = SVGPathData.QUAD_TO;
|
|
195
|
+
prevQuadX1 = isNaN(prevQuadX1) ? prevX : prevQuadX1;
|
|
196
|
+
prevQuadY1 = isNaN(prevQuadY1) ? prevY : prevQuadY1;
|
|
197
|
+
command.x1 = command.relative ? prevX - prevQuadX1 : 2 * prevX - prevQuadX1;
|
|
198
|
+
command.y1 = command.relative ? prevY - prevQuadY1 : 2 * prevY - prevQuadY1;
|
|
199
|
+
}
|
|
200
|
+
if (command.type & SVGPathData.QUAD_TO) {
|
|
201
|
+
prevQuadX1 = command.relative ? prevX + command.x1 : command.x1;
|
|
202
|
+
prevQuadY1 = command.relative ? prevY + command.y1 : command.y1;
|
|
203
|
+
const x1 = command.x1;
|
|
204
|
+
const y1 = command.y1;
|
|
205
|
+
|
|
206
|
+
command.type = SVGPathData.CURVE_TO;
|
|
207
|
+
command.x1 = ((command.relative ? 0 : prevX) + x1 * 2) / 3;
|
|
208
|
+
command.y1 = ((command.relative ? 0 : prevY) + y1 * 2) / 3;
|
|
209
|
+
command.x2 = (command.x + x1 * 2) / 3;
|
|
210
|
+
command.y2 = (command.y + y1 * 2) / 3;
|
|
211
|
+
} else {
|
|
212
|
+
prevQuadX1 = NaN;
|
|
213
|
+
prevQuadY1 = NaN;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
return command;
|
|
217
|
+
});
|
|
218
|
+
}
|
|
219
|
+
export function INFO(
|
|
220
|
+
f: (command: any, prevXAbs: number, prevYAbs: number,
|
|
221
|
+
pathStartXAbs: number, pathStartYAbs: number) => any | any[]) {
|
|
222
|
+
let prevXAbs = 0;
|
|
223
|
+
let prevYAbs = 0;
|
|
224
|
+
let pathStartXAbs = NaN;
|
|
225
|
+
let pathStartYAbs = NaN;
|
|
226
|
+
|
|
227
|
+
return function transform(command: any) {
|
|
228
|
+
if (isNaN(pathStartXAbs) && !(command.type & SVGPathData.MOVE_TO)) {
|
|
229
|
+
throw new Error("path must start with moveto");
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
const result = f(command, prevXAbs, prevYAbs, pathStartXAbs, pathStartYAbs);
|
|
233
|
+
|
|
234
|
+
if (command.type & SVGPathData.CLOSE_PATH) {
|
|
235
|
+
prevXAbs = pathStartXAbs;
|
|
236
|
+
prevYAbs = pathStartYAbs;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
if ("undefined" !== typeof command.x) {
|
|
240
|
+
prevXAbs = (command.relative ? prevXAbs + command.x : command.x);
|
|
241
|
+
}
|
|
242
|
+
if ("undefined" !== typeof command.y) {
|
|
243
|
+
prevYAbs = (command.relative ? prevYAbs + command.y : command.y);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
if (command.type & SVGPathData.MOVE_TO) {
|
|
247
|
+
pathStartXAbs = prevXAbs;
|
|
248
|
+
pathStartYAbs = prevYAbs;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
return result;
|
|
252
|
+
};
|
|
253
|
+
}
|
|
254
|
+
/*
|
|
255
|
+
* remove 0-length segments
|
|
256
|
+
*/
|
|
257
|
+
export function SANITIZE(EPS = 0) {
|
|
258
|
+
assertNumbers(EPS);
|
|
259
|
+
let prevCurveC2X = NaN;
|
|
260
|
+
let prevCurveC2Y = NaN;
|
|
261
|
+
let prevQuadCX = NaN;
|
|
262
|
+
let prevQuadCY = NaN;
|
|
263
|
+
|
|
264
|
+
return INFO((command, prevX, prevY, pathStartX, pathStartY) => {
|
|
265
|
+
const abs = Math.abs;
|
|
266
|
+
let skip = false;
|
|
267
|
+
let x1Rel = 0;
|
|
268
|
+
let y1Rel = 0;
|
|
269
|
+
|
|
270
|
+
if (command.type & SVGPathData.SMOOTH_CURVE_TO) {
|
|
271
|
+
x1Rel = isNaN(prevCurveC2X) ? 0 : prevX - prevCurveC2X;
|
|
272
|
+
y1Rel = isNaN(prevCurveC2Y) ? 0 : prevY - prevCurveC2Y;
|
|
273
|
+
}
|
|
274
|
+
if (command.type & (SVGPathData.CURVE_TO | SVGPathData.SMOOTH_CURVE_TO)) {
|
|
275
|
+
prevCurveC2X = command.relative ? prevX + command.x2 : command.x2;
|
|
276
|
+
prevCurveC2Y = command.relative ? prevY + command.y2 : command.y2;
|
|
277
|
+
} else {
|
|
278
|
+
prevCurveC2X = NaN;
|
|
279
|
+
prevCurveC2Y = NaN;
|
|
280
|
+
}
|
|
281
|
+
if (command.type & SVGPathData.SMOOTH_QUAD_TO) {
|
|
282
|
+
prevQuadCX = isNaN(prevQuadCX) ? prevX : 2 * prevX - prevQuadCX;
|
|
283
|
+
prevQuadCY = isNaN(prevQuadCY) ? prevY : 2 * prevY - prevQuadCY;
|
|
284
|
+
} else if (command.type & SVGPathData.QUAD_TO) {
|
|
285
|
+
prevQuadCX = command.relative ? prevX + command.x1 : command.x1;
|
|
286
|
+
prevQuadCY = command.relative ? prevY + command.y1 : command.y2;
|
|
287
|
+
} else {
|
|
288
|
+
prevQuadCX = NaN;
|
|
289
|
+
prevQuadCY = NaN;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
if (command.type & SVGPathData.LINE_COMMANDS ||
|
|
293
|
+
command.type & SVGPathData.ARC && (0 === command.rX || 0 === command.rY || !command.lArcFlag) ||
|
|
294
|
+
command.type & SVGPathData.CURVE_TO || command.type & SVGPathData.SMOOTH_CURVE_TO ||
|
|
295
|
+
command.type & SVGPathData.QUAD_TO || command.type & SVGPathData.SMOOTH_QUAD_TO) {
|
|
296
|
+
const xRel = "undefined" === typeof command.x ? 0 :
|
|
297
|
+
(command.relative ? command.x : command.x - prevX);
|
|
298
|
+
const yRel = "undefined" === typeof command.y ? 0 :
|
|
299
|
+
(command.relative ? command.y : command.y - prevY);
|
|
300
|
+
|
|
301
|
+
x1Rel = !isNaN(prevQuadCX) ? prevQuadCX - prevX :
|
|
302
|
+
"undefined" === typeof command.x1 ? x1Rel :
|
|
303
|
+
command.relative ? command.x :
|
|
304
|
+
command.x1 - prevX;
|
|
305
|
+
y1Rel = !isNaN(prevQuadCY) ? prevQuadCY - prevY :
|
|
306
|
+
"undefined" === typeof command.y1 ? y1Rel :
|
|
307
|
+
command.relative ? command.y :
|
|
308
|
+
command.y1 - prevY;
|
|
309
|
+
|
|
310
|
+
const x2Rel = "undefined" === typeof command.x2 ? 0 :
|
|
311
|
+
(command.relative ? command.x : command.x2 - prevX);
|
|
312
|
+
const y2Rel = "undefined" === typeof command.y2 ? 0 :
|
|
313
|
+
(command.relative ? command.y : command.y2 - prevY);
|
|
314
|
+
|
|
315
|
+
if (abs(xRel) <= EPS && abs(yRel) <= EPS &&
|
|
316
|
+
abs(x1Rel) <= EPS && abs(y1Rel) <= EPS &&
|
|
317
|
+
abs(x2Rel) <= EPS && abs(y2Rel) <= EPS) {
|
|
318
|
+
skip = true;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
if (command.type & SVGPathData.CLOSE_PATH) {
|
|
323
|
+
if (abs(prevX - pathStartX) <= EPS && abs(prevY - pathStartY) <= EPS) {
|
|
324
|
+
skip = true;
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
return skip ? [] : command;
|
|
329
|
+
});
|
|
330
|
+
}
|
|
331
|
+
// SVG Transforms : http://www.w3.org/TR/SVGTiny12/coords.html#TransformList
|
|
332
|
+
// Matrix : http://apike.ca/prog_svg_transform.html
|
|
333
|
+
// a c e
|
|
334
|
+
// b d f
|
|
335
|
+
export function MATRIX(a: number, b: number, c: number, d: number, e: number, f: number) {
|
|
336
|
+
assertNumbers(a, b, c, d, e, f);
|
|
337
|
+
|
|
338
|
+
return INFO((command, prevX, prevY, pathStartX) => {
|
|
339
|
+
const origX1 = command.x1;
|
|
340
|
+
const origX2 = command.x2;
|
|
341
|
+
// if isNaN(pathStartX), then this is the first command, which is ALWAYS an
|
|
342
|
+
// absolute MOVE_TO, regardless what the relative flag says
|
|
343
|
+
const comRel = command.relative && !isNaN(pathStartX);
|
|
344
|
+
const x = "undefined" !== typeof command.x ? command.x : (comRel ? 0 : prevX);
|
|
345
|
+
const y = "undefined" !== typeof command.y ? command.y : (comRel ? 0 : prevY);
|
|
346
|
+
|
|
347
|
+
if (command.type & SVGPathData.HORIZ_LINE_TO && 0 !== b) {
|
|
348
|
+
command.type = SVGPathData.LINE_TO;
|
|
349
|
+
command.y = command.relative ? 0 : prevY;
|
|
350
|
+
}
|
|
351
|
+
if (command.type & SVGPathData.VERT_LINE_TO && 0 !== c) {
|
|
352
|
+
command.type = SVGPathData.LINE_TO;
|
|
353
|
+
command.x = command.relative ? 0 : prevX;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
if ("undefined" !== typeof command.x) {
|
|
357
|
+
command.x = (command.x * a) + (y * c) + (comRel ? 0 : e);
|
|
358
|
+
}
|
|
359
|
+
if ("undefined" !== typeof command.y) {
|
|
360
|
+
command.y = (x * b) + command.y * d + (comRel ? 0 : f);
|
|
361
|
+
}
|
|
362
|
+
if ("undefined" !== typeof command.x1) {
|
|
363
|
+
command.x1 = command.x1 * a + command.y1 * c + (comRel ? 0 : e);
|
|
364
|
+
}
|
|
365
|
+
if ("undefined" !== typeof command.y1) {
|
|
366
|
+
command.y1 = origX1 * b + command.y1 * d + (comRel ? 0 : f);
|
|
367
|
+
}
|
|
368
|
+
if ("undefined" !== typeof command.x2) {
|
|
369
|
+
command.x2 = command.x2 * a + command.y2 * c + (comRel ? 0 : e);
|
|
370
|
+
}
|
|
371
|
+
if ("undefined" !== typeof command.y2) {
|
|
372
|
+
command.y2 = origX2 * b + command.y2 * d + (comRel ? 0 : f);
|
|
373
|
+
}
|
|
374
|
+
function sqr(x: number) { return x * x; }
|
|
375
|
+
const det = a * d - b * c;
|
|
376
|
+
|
|
377
|
+
if ("undefined" !== typeof command.xRot) {
|
|
378
|
+
// Skip if this is a pure translation
|
|
379
|
+
if (1 !== a || 0 !== b || 0 !== c || 1 !== d) {
|
|
380
|
+
// Special case for singular matrix
|
|
381
|
+
if (0 === det) {
|
|
382
|
+
// In the singular case, the arc is compressed to a line. The actual geometric image of the original
|
|
383
|
+
// curve under this transform possibly extends beyond the starting and/or ending points of the segment, but
|
|
384
|
+
// for simplicity we ignore this detail and just replace this command with a single line segment.
|
|
385
|
+
delete command.rX;
|
|
386
|
+
delete command.rY;
|
|
387
|
+
delete command.xRot;
|
|
388
|
+
delete command.lArcFlag;
|
|
389
|
+
delete command.sweepFlag;
|
|
390
|
+
command.type = SVGPathData.LINE_TO;
|
|
391
|
+
} else {
|
|
392
|
+
// Convert to radians
|
|
393
|
+
const xRot = command.xRot * Math.PI / 180;
|
|
394
|
+
|
|
395
|
+
// Convert rotated ellipse to general conic form
|
|
396
|
+
// x0^2/rX^2 + y0^2/rY^2 - 1 = 0
|
|
397
|
+
// x0 = x*cos(xRot) + y*sin(xRot)
|
|
398
|
+
// y0 = -x*sin(xRot) + y*cos(xRot)
|
|
399
|
+
// --> A*x^2 + B*x*y + C*y^2 - 1 = 0, where
|
|
400
|
+
const sinRot = Math.sin(xRot);
|
|
401
|
+
const cosRot = Math.cos(xRot);
|
|
402
|
+
const xCurve = 1 / sqr(command.rX);
|
|
403
|
+
const yCurve = 1 / sqr(command.rY);
|
|
404
|
+
const A = sqr(cosRot) * xCurve + sqr(sinRot) * yCurve;
|
|
405
|
+
const B = 2 * sinRot * cosRot * (xCurve - yCurve);
|
|
406
|
+
const C = sqr(sinRot) * xCurve + sqr(cosRot) * yCurve;
|
|
407
|
+
|
|
408
|
+
// Apply matrix to A*x^2 + B*x*y + C*y^2 - 1 = 0
|
|
409
|
+
// x1 = a*x + c*y
|
|
410
|
+
// y1 = b*x + d*y
|
|
411
|
+
// (we can ignore e and f, since pure translations don"t affect the shape of the ellipse)
|
|
412
|
+
// --> A1*x1^2 + B1*x1*y1 + C1*y1^2 - det^2 = 0, where
|
|
413
|
+
const A1 = A * d * d - B * b * d + C * b * b;
|
|
414
|
+
const B1 = B * (a * d + b * c) - 2 * (A * c * d + C * a * b);
|
|
415
|
+
const C1 = A * c * c - B * a * c + C * a * a;
|
|
416
|
+
|
|
417
|
+
// Unapply newXRot to get back to axis-aligned ellipse equation
|
|
418
|
+
// x1 = x2*cos(newXRot) - y2*sin(newXRot)
|
|
419
|
+
// y1 = x2*sin(newXRot) + y2*cos(newXRot)
|
|
420
|
+
// A1*x1^2 + B1*x1*y1 + C1*y1^2 - det^2 =
|
|
421
|
+
// x2^2*(A1*cos(newXRot)^2 + B1*sin(newXRot)*cos(newXRot) + C1*sin(newXRot)^2)
|
|
422
|
+
// + x2*y2*(2*(C1 - A1)*sin(newXRot)*cos(newXRot) + B1*(cos(newXRot)^2 - sin(newXRot)^2))
|
|
423
|
+
// + y2^2*(A1*sin(newXRot)^2 - B1*sin(newXRot)*cos(newXRot) + C1*cos(newXRot)^2)
|
|
424
|
+
// (which must have the same zeroes as)
|
|
425
|
+
// x2^2/newRX^2 + y2^2/newRY^2 - 1
|
|
426
|
+
// (so we have)
|
|
427
|
+
// 2*(C1 - A1)*sin(newXRot)*cos(newXRot) + B1*(cos(newXRot)^2 - sin(newXRot)^2) = 0
|
|
428
|
+
// (A1 - C1)*sin(2*newXRot) = B1*cos(2*newXRot)
|
|
429
|
+
// 2*newXRot = atan2(B1, A1 - C1)
|
|
430
|
+
const newXRot = ((Math.atan2(B1, A1 - C1) + Math.PI) % Math.PI) / 2;
|
|
431
|
+
// For any integer n, (atan2(B1, A1 - C1) + n*pi)/2 is a solution to the above; incrementing n just swaps
|
|
432
|
+
// the x and y radii computed below (since that"s what rotating an ellipse by pi/2 does). Choosing the
|
|
433
|
+
// rotation between 0 and pi/2 eliminates the ambiguity and leads to more predictable output.
|
|
434
|
+
|
|
435
|
+
// Finally, we get newRX and newRY from the same-zeroes relationship that gave us newXRot
|
|
436
|
+
const newSinRot = Math.sin(newXRot);
|
|
437
|
+
const newCosRot = Math.cos(newXRot);
|
|
438
|
+
|
|
439
|
+
command.rX = Math.abs(det) /
|
|
440
|
+
Math.sqrt(A1 * sqr(newCosRot) + B1 * newSinRot * newCosRot + C1 * sqr(newSinRot));
|
|
441
|
+
command.rY = Math.abs(det) /
|
|
442
|
+
Math.sqrt(A1 * sqr(newSinRot) - B1 * newSinRot * newCosRot + C1 * sqr(newCosRot));
|
|
443
|
+
command.xRot = newXRot * 180 / Math.PI;
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
}
|
|
447
|
+
// sweepFlag needs to be inverted when mirroring shapes
|
|
448
|
+
// see http://www.itk.ilstu.edu/faculty/javila/SVG/SVG_drawing1/elliptical_curve.htm
|
|
449
|
+
// m 65,10 a 50,25 0 1 0 50,25
|
|
450
|
+
// M 65,60 A 50,25 0 1 1 115,35
|
|
451
|
+
if ("undefined" !== typeof command.sweepFlag && 0 > det) {
|
|
452
|
+
command.sweepFlag = +!command.sweepFlag;
|
|
453
|
+
}
|
|
454
|
+
return command;
|
|
455
|
+
});
|
|
456
|
+
}
|
|
457
|
+
export function ROTATE(a: number, x = 0, y = 0) {
|
|
458
|
+
assertNumbers(a, x, y);
|
|
459
|
+
const sin = Math.sin(a);
|
|
460
|
+
const cos = Math.cos(a);
|
|
461
|
+
|
|
462
|
+
return MATRIX(cos, sin, -sin, cos, x - x * cos + y * sin, y - x * sin - y * cos);
|
|
463
|
+
}
|
|
464
|
+
export function TRANSLATE(dX: number, dY = 0) {
|
|
465
|
+
assertNumbers(dX, dY);
|
|
466
|
+
return MATRIX(1, 0, 0, 1, dX, dY);
|
|
467
|
+
}
|
|
468
|
+
export function SCALE(dX: number, dY = dX) {
|
|
469
|
+
assertNumbers(dX, dY);
|
|
470
|
+
return MATRIX(dX, 0, 0, dY, 0, 0);
|
|
471
|
+
}
|
|
472
|
+
export function SKEW_X(a: number) {
|
|
473
|
+
assertNumbers(a);
|
|
474
|
+
return MATRIX(1, 0, Math.atan(a), 1, 0, 0);
|
|
475
|
+
}
|
|
476
|
+
export function SKEW_Y(a: number) {
|
|
477
|
+
assertNumbers(a);
|
|
478
|
+
return MATRIX(1, Math.atan(a), 0, 1, 0, 0);
|
|
479
|
+
}
|
|
480
|
+
export function X_AXIS_SYMMETRY(xOffset = 0) {
|
|
481
|
+
assertNumbers(xOffset);
|
|
482
|
+
return MATRIX(-1, 0, 0, 1, xOffset, 0);
|
|
483
|
+
}
|
|
484
|
+
export function Y_AXIS_SYMMETRY(yOffset = 0) {
|
|
485
|
+
assertNumbers(yOffset);
|
|
486
|
+
return MATRIX(1, 0, 0, -1, 0, yOffset);
|
|
487
|
+
}
|
|
488
|
+
// Convert arc commands to curve commands
|
|
489
|
+
export function A_TO_C() {
|
|
490
|
+
return INFO((command, prevX, prevY) => {
|
|
491
|
+
if (SVGPathData.ARC === command.type) {
|
|
492
|
+
return a2c(command, command.relative ? 0 : prevX, command.relative ? 0 : prevY);
|
|
493
|
+
}
|
|
494
|
+
return command;
|
|
495
|
+
});
|
|
496
|
+
}
|
|
497
|
+
// @see annotateArcCommand
|
|
498
|
+
export function ANNOTATE_ARCS() {
|
|
499
|
+
return INFO((c, x1, y1) => {
|
|
500
|
+
if (c.relative) {
|
|
501
|
+
x1 = 0;
|
|
502
|
+
y1 = 0;
|
|
503
|
+
}
|
|
504
|
+
if (SVGPathData.ARC === c.type) {
|
|
505
|
+
annotateArcCommand(c, x1, y1);
|
|
506
|
+
}
|
|
507
|
+
return c;
|
|
508
|
+
});
|
|
509
|
+
}
|
|
510
|
+
export function CLONE() {
|
|
511
|
+
return (c: SVGCommand) => {
|
|
512
|
+
const result = {} as SVGCommand;
|
|
513
|
+
// tslint:disable-next-line
|
|
514
|
+
for (const key in c) {
|
|
515
|
+
result[key as keyof SVGCommand] = c[key as keyof SVGCommand];
|
|
516
|
+
}
|
|
517
|
+
return result;
|
|
518
|
+
};
|
|
519
|
+
}
|
|
520
|
+
// @see annotateArcCommand
|
|
521
|
+
export function CALCULATE_BOUNDS() {
|
|
522
|
+
const clone = CLONE();
|
|
523
|
+
const toAbs = TO_ABS();
|
|
524
|
+
const qtToC = QT_TO_C();
|
|
525
|
+
const normST = NORMALIZE_ST();
|
|
526
|
+
const f: TransformFunction & {minX: number, maxX: number, minY: number, maxY: number} =
|
|
527
|
+
INFO((command, prevXAbs, prevYAbs) => {
|
|
528
|
+
const c = normST(qtToC(toAbs(clone(command))));
|
|
529
|
+
function fixX(absX: number) {
|
|
530
|
+
if (absX > f.maxX) { f.maxX = absX; }
|
|
531
|
+
if (absX < f.minX) { f.minX = absX; }
|
|
532
|
+
}
|
|
533
|
+
function fixY(absY: number) {
|
|
534
|
+
if (absY > f.maxY) { f.maxY = absY; }
|
|
535
|
+
if (absY < f.minY) { f.minY = absY; }
|
|
536
|
+
}
|
|
537
|
+
if (c.type & SVGPathData.DRAWING_COMMANDS) {
|
|
538
|
+
fixX(prevXAbs);
|
|
539
|
+
fixY(prevYAbs);
|
|
540
|
+
}
|
|
541
|
+
if (c.type & SVGPathData.HORIZ_LINE_TO) {
|
|
542
|
+
fixX(c.x);
|
|
543
|
+
}
|
|
544
|
+
if (c.type & SVGPathData.VERT_LINE_TO) {
|
|
545
|
+
fixY(c.y);
|
|
546
|
+
}
|
|
547
|
+
if (c.type & SVGPathData.LINE_TO) {
|
|
548
|
+
fixX(c.x);
|
|
549
|
+
fixY(c.y);
|
|
550
|
+
}
|
|
551
|
+
if (c.type & SVGPathData.CURVE_TO) {
|
|
552
|
+
// add start and end points
|
|
553
|
+
fixX(c.x);
|
|
554
|
+
fixY(c.y);
|
|
555
|
+
const xDerivRoots = bezierRoot(prevXAbs, c.x1, c.x2, c.x);
|
|
556
|
+
|
|
557
|
+
for (const derivRoot of xDerivRoots) {
|
|
558
|
+
if (0 < derivRoot && 1 > derivRoot) {
|
|
559
|
+
fixX(bezierAt(prevXAbs, c.x1, c.x2, c.x, derivRoot));
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
const yDerivRoots = bezierRoot(prevYAbs, c.y1, c.y2, c.y);
|
|
563
|
+
|
|
564
|
+
for (const derivRoot of yDerivRoots) {
|
|
565
|
+
if (0 < derivRoot && 1 > derivRoot) {
|
|
566
|
+
fixY(bezierAt(prevYAbs, c.y1, c.y2, c.y, derivRoot));
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
if (c.type & SVGPathData.ARC) {
|
|
571
|
+
// add start and end points
|
|
572
|
+
fixX(c.x);
|
|
573
|
+
fixY(c.y);
|
|
574
|
+
annotateArcCommand(c, prevXAbs, prevYAbs);
|
|
575
|
+
// p = cos(phi) * xv + sin(phi) * yv
|
|
576
|
+
// dp = -sin(phi) * xv + cos(phi) * yv = 0
|
|
577
|
+
const xRotRad = c.xRot / 180 * Math.PI;
|
|
578
|
+
// points on ellipse for phi = 0° and phi = 90°
|
|
579
|
+
const x0 = Math.cos(xRotRad) * c.rX;
|
|
580
|
+
const y0 = Math.sin(xRotRad) * c.rX;
|
|
581
|
+
const x90 = -Math.sin(xRotRad) * c.rY;
|
|
582
|
+
const y90 = Math.cos(xRotRad) * c.rY;
|
|
583
|
+
|
|
584
|
+
// annotateArcCommand returns phi1 and phi2 such that -180° < phi1 < 180° and phi2 is smaller or greater
|
|
585
|
+
// depending on the sweep flag. Calculate phiMin, phiMax such that -180° < phiMin < 180° and phiMin < phiMax
|
|
586
|
+
const [phiMin, phiMax] = c.phi1 < c.phi2 ?
|
|
587
|
+
[c.phi1, c.phi2] :
|
|
588
|
+
(-180 > c.phi2 ? [c.phi2 + 360, c.phi1 + 360] : [c.phi2, c.phi1]);
|
|
589
|
+
const normalizeXiEta = ([xi, eta]: [number, number]) => {
|
|
590
|
+
const phiRad = Math.atan2(eta, xi);
|
|
591
|
+
const phi = phiRad * 180 / Math.PI;
|
|
592
|
+
|
|
593
|
+
return phi < phiMin ? phi + 360 : phi;
|
|
594
|
+
};
|
|
595
|
+
// xi = cos(phi), eta = sin(phi)
|
|
596
|
+
|
|
597
|
+
const xDerivRoots = intersectionUnitCircleLine(x90, -x0, 0).map(normalizeXiEta);
|
|
598
|
+
for (const derivRoot of xDerivRoots) {
|
|
599
|
+
if (derivRoot > phiMin && derivRoot < phiMax) {
|
|
600
|
+
fixX(arcAt(c.cX, x0, x90, derivRoot));
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
const yDerivRoots = intersectionUnitCircleLine(y90, -y0, 0).map(normalizeXiEta);
|
|
605
|
+
for (const derivRoot of yDerivRoots) {
|
|
606
|
+
if (derivRoot > phiMin && derivRoot < phiMax) {
|
|
607
|
+
fixY(arcAt(c.cY, y0, y90, derivRoot));
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
return command;
|
|
612
|
+
}) as any;
|
|
613
|
+
|
|
614
|
+
f.minX = Infinity;
|
|
615
|
+
f.maxX = -Infinity;
|
|
616
|
+
f.minY = Infinity;
|
|
617
|
+
f.maxY = -Infinity;
|
|
618
|
+
return f;
|
|
619
|
+
}
|
|
620
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { SVGPathDataTransformer } from "./SVGPathDataTransformer";
|
|
2
|
+
import { TransformFunction } from "./types";
|
|
3
|
+
|
|
4
|
+
export abstract class TransformableSVG {
|
|
5
|
+
round(x?: number) {
|
|
6
|
+
return this.transform(SVGPathDataTransformer.ROUND(x));
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
toAbs() {
|
|
10
|
+
return this.transform(SVGPathDataTransformer.TO_ABS());
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
toRel() {
|
|
14
|
+
return this.transform(SVGPathDataTransformer.TO_REL());
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
normalizeHVZ(a?: boolean, b?: boolean, c?: boolean) {
|
|
18
|
+
return this.transform(SVGPathDataTransformer.NORMALIZE_HVZ(a, b, c));
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
normalizeST() {
|
|
22
|
+
return this.transform(SVGPathDataTransformer.NORMALIZE_ST());
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
qtToC() {
|
|
26
|
+
return this.transform(SVGPathDataTransformer.QT_TO_C());
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
aToC() {
|
|
30
|
+
return this.transform(SVGPathDataTransformer.A_TO_C());
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
sanitize(eps?: number) {
|
|
34
|
+
return this.transform(SVGPathDataTransformer.SANITIZE(eps));
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
translate(x: number, y?: number) {
|
|
38
|
+
return this.transform(SVGPathDataTransformer.TRANSLATE(x, y));
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
scale(x: number, y?: number) {
|
|
42
|
+
return this.transform(SVGPathDataTransformer.SCALE(x, y));
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
rotate(a: number, x?: number, y?: number) {
|
|
46
|
+
return this.transform(SVGPathDataTransformer.ROTATE(a, x, y));
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
matrix(a: number, b: number, c: number, d: number, e: number, f: number) {
|
|
50
|
+
return this.transform(SVGPathDataTransformer.MATRIX(a, b, c, d, e, f));
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
skewX(a: number) {
|
|
54
|
+
return this.transform(SVGPathDataTransformer.SKEW_X(a));
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
skewY(a: number) {
|
|
58
|
+
return this.transform(SVGPathDataTransformer.SKEW_Y(a));
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
xSymmetry(xOffset?: number) {
|
|
62
|
+
return this.transform(SVGPathDataTransformer.X_AXIS_SYMMETRY(xOffset));
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
ySymmetry(yOffset?: number) {
|
|
66
|
+
return this.transform(SVGPathDataTransformer.Y_AXIS_SYMMETRY(yOffset));
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
annotateArcs() {
|
|
70
|
+
return this.transform(SVGPathDataTransformer.ANNOTATE_ARCS());
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
abstract transform(transformFunction: TransformFunction): this;
|
|
74
|
+
}
|