mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 02:54:11 +08:00
feat: Scoped Packages (#7911)
* chore: move tns-core-modules to nativescript-core * chore: preparing compat generate script * chore: add missing definitions * chore: no need for http-request to be private * chore: packages chore * test: generate tests for tns-core-modules * chore: add anroid module for consistency * chore: add .npmignore * chore: added privateModulesWhitelist * chore(webpack): added bundle-entry-points * chore: scripts * chore: tests changed to use @ns/core * test: add scoped-packages test project * test: fix types * test: update test project * chore: build scripts * chore: update build script * chore: npm scripts cleanup * chore: make the compat pgk work with old wp config * test: generate diff friendly tests * chore: create barrel exports * chore: move files after rebase * chore: typedoc config * chore: compat mode * chore: review of barrels * chore: remove tns-core-modules import after rebase * chore: dev workflow setup * chore: update developer-workflow * docs: experiment with API extractor * chore: api-extractor and barrel exports * chore: api-extractor configs * chore: generate d.ts rollup with api-extractor * refactor: move methods inside Frame * chore: fic tests to use Frame static methods * refactor: create Builder class * refactor: use Builder class in tests * refactor: include Style in ui barrel * chore: separate compat build script * chore: fix tslint errors * chore: update NATIVESCRIPT_CORE_ARGS * chore: fix compat pack * chore: fix ui-test-app build with linked modules * chore: Application, ApplicationSettings, Connectivity and Http * chore: export Trace, Profiling and Utils * refactor: Static create methods for ImageSource * chore: fix deprecated usages of ImageSource * chore: move Span and FormattedString to ui * chore: add events-args and ImageSource to index files * chore: check for CLI >= 6.2 when building for IOS * chore: update travis build * chore: copy Pod file to compat package * chore: update error msg ui-tests-app * refactor: Apply suggestions from code review Co-Authored-By: Martin Yankov <m.i.yankov@gmail.com> * chore: typings and refs * chore: add missing d.ts files for public API * chore: adress code review FB * chore: update api-report * chore: dev-workflow for other apps * chore: api update * chore: update api-report
This commit is contained in:

committed by
GitHub

parent
6c7139477e
commit
cc97a16800
9
nativescript-core/css-value/LICENSE
Normal file
9
nativescript-core/css-value/LICENSE
Normal file
@ -0,0 +1,9 @@
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2013 TJ Holowaychuk <tj@vision-media.ca>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
45
nativescript-core/css-value/Readme.md
Normal file
45
nativescript-core/css-value/Readme.md
Normal file
@ -0,0 +1,45 @@
|
||||
|
||||
# css-value
|
||||
|
||||
WIP CSS value parser
|
||||
|
||||
## Example
|
||||
|
||||
The CSS value string "1px 0 0 5% .5px .10 1.5" yields:
|
||||
|
||||
```js
|
||||
[
|
||||
{ type: 'number', string: '1px', unit: 'px', value: 1 },
|
||||
{ type: 'number', string: '0', unit: '', value: 0 },
|
||||
{ type: 'number', string: '0', unit: '', value: 0 },
|
||||
{ type: 'number', string: '5%', unit: '%', value: 5 },
|
||||
{ type: 'number', string: '.5px', unit: 'px', value: .5 },
|
||||
{ type: 'number', string: '.10', unit: '', value: .1 },
|
||||
{ type: 'number', string: '1.5', unit: '', value: 1.5 }
|
||||
]
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
(The MIT License)
|
||||
|
||||
Copyright (c) 2013 TJ Holowaychuk <tj@vision-media.ca>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
'Software'), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
26
nativescript-core/css-value/UPGRADING.md
Normal file
26
nativescript-core/css-value/UPGRADING.md
Normal file
@ -0,0 +1,26 @@
|
||||
# Intro
|
||||
|
||||
This is a fork of `css-value`, with the reference repo available at:
|
||||
|
||||
https://github.com/NativeScript/css-value/tree/nativescript
|
||||
|
||||
Note that the NativeScript-related changes are in the `nativescript` branch.
|
||||
|
||||
To simplify development, we are not using a git submodule. All changes to `css-value` must be synced back to our forked repo, and ideally submitted to upstream in a pull request.
|
||||
|
||||
# Modifying css-value
|
||||
|
||||
All changes need to happen on a **master-based** branch in our fork at (same as above):
|
||||
|
||||
https://github.com/NativeScript/css-value/
|
||||
|
||||
Ideally we should have a pull request submitted upstream.
|
||||
|
||||
Changes not accepted (yet) to the upstream repo should be cherry-picked to the `nativescript` branch.
|
||||
|
||||
# Upgrading to a later release of css-value
|
||||
|
||||
1. Pull the latest changes from upstream to the master branch.
|
||||
2. Push the updated master to our repo.
|
||||
3. Review and rebase our changes in the `nativescript` branch on top of the new master.
|
||||
4. Commit the changed package files (`.js`, `.json`, etc) to the NativeScript repo below the `css-value` folder.
|
23
nativescript-core/css-value/package.json
Normal file
23
nativescript-core/css-value/package.json
Normal file
@ -0,0 +1,23 @@
|
||||
{
|
||||
"name": "css-value",
|
||||
"version": "0.0.1",
|
||||
"description": "CSS value parser",
|
||||
"keywords": [
|
||||
"css",
|
||||
"parser",
|
||||
"value"
|
||||
],
|
||||
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/visionmedia/css-value.git"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"mocha": "~1.9.0",
|
||||
"should": "~1.2.2"
|
||||
},
|
||||
"main": "reworkcss-value",
|
||||
"types": "reworkcss-value.d.ts",
|
||||
"nativescript": {}
|
||||
}
|
12
nativescript-core/css-value/reworkcss-value.d.ts
vendored
Normal file
12
nativescript-core/css-value/reworkcss-value.d.ts
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
/**
|
||||
* @module "css-value"
|
||||
*/ /** */
|
||||
|
||||
interface CSSValue {
|
||||
type: string;
|
||||
string: string;
|
||||
unit?: string;
|
||||
value?: number;
|
||||
}
|
||||
|
||||
export function parse(cssValue: string): Array<CSSValue>;
|
113
nativescript-core/css-value/reworkcss-value.js
Normal file
113
nativescript-core/css-value/reworkcss-value.js
Normal file
@ -0,0 +1,113 @@
|
||||
|
||||
exports.parse = parse;
|
||||
|
||||
function parse(str) {
|
||||
return new Parser(str).parse();
|
||||
}
|
||||
|
||||
function Parser(str) {
|
||||
this.str = str;
|
||||
}
|
||||
|
||||
Parser.prototype.skip = function(m){
|
||||
this.str = this.str.slice(m[0].length);
|
||||
};
|
||||
|
||||
Parser.prototype.comma = function(){
|
||||
var m = /^, */.exec(this.str);
|
||||
if (!m) return;
|
||||
this.skip(m);
|
||||
return { type: 'comma', string: ',' };
|
||||
};
|
||||
|
||||
Parser.prototype.ident = function(){
|
||||
var m = /^([\w-]+) */.exec(this.str);
|
||||
if (!m) return;
|
||||
this.skip(m);
|
||||
return {
|
||||
type: 'ident',
|
||||
string: m[1]
|
||||
}
|
||||
};
|
||||
|
||||
Parser.prototype.int = function(){
|
||||
var m = /^(([-\+]?\d+)(\S+)?) */.exec(this.str);
|
||||
if (!m) return;
|
||||
this.skip(m);
|
||||
var n = ~~m[2];
|
||||
var u = m[3];
|
||||
|
||||
return {
|
||||
type: 'number',
|
||||
string: m[1],
|
||||
unit: u || '',
|
||||
value: n
|
||||
}
|
||||
};
|
||||
|
||||
Parser.prototype.float = function(){
|
||||
var m = /^(((?:[-\+]?\d+)?\.\d+)(\S+)?) */.exec(this.str);
|
||||
if (!m) return;
|
||||
this.skip(m);
|
||||
var n = parseFloat(m[2]);
|
||||
var u = m[3];
|
||||
|
||||
return {
|
||||
type: 'number',
|
||||
string: m[1],
|
||||
unit: u || '',
|
||||
value: n
|
||||
}
|
||||
};
|
||||
|
||||
Parser.prototype.number = function(){
|
||||
return this.float() || this.int();
|
||||
};
|
||||
|
||||
Parser.prototype.double = function(){
|
||||
var m = /^"([^"]*)" */.exec(this.str);
|
||||
if (!m) return m;
|
||||
this.skip(m);
|
||||
return {
|
||||
type: 'string',
|
||||
quote: '"',
|
||||
string: '"' + m[1] + '"',
|
||||
value: m[1]
|
||||
}
|
||||
};
|
||||
|
||||
Parser.prototype.single = function(){
|
||||
var m = /^'([^']*)' */.exec(this.str);
|
||||
if (!m) return m;
|
||||
this.skip(m);
|
||||
return {
|
||||
type: 'string',
|
||||
quote: "'",
|
||||
string: "'" + m[1] + "'",
|
||||
value: m[1]
|
||||
}
|
||||
};
|
||||
|
||||
Parser.prototype.string = function(){
|
||||
return this.single() || this.double();
|
||||
};
|
||||
|
||||
|
||||
Parser.prototype.value = function(){
|
||||
return this.number()
|
||||
|| this.ident()
|
||||
|| this.string()
|
||||
|| this.comma();
|
||||
};
|
||||
|
||||
Parser.prototype.parse = function(){
|
||||
var vals = [];
|
||||
|
||||
while (this.str.length) {
|
||||
var obj = this.value();
|
||||
if (!obj) throw new Error('failed to parse near `' + this.str.slice(0, 10) + '...`');
|
||||
vals.push(obj);
|
||||
}
|
||||
|
||||
return vals;
|
||||
};
|
Reference in New Issue
Block a user