progress on migrating to heex templates and font-icons

This commit is contained in:
Adam Piontek 2022-08-13 07:32:36 -04:00
parent d43daafdb7
commit 3eff955672
21793 changed files with 2161968 additions and 16895 deletions
assets_old/node_modules/unicode-property-aliases-ecmascript

View file

@ -0,0 +1,20 @@
Copyright Mathias Bynens <https://mathiasbynens.be/>
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.

View file

@ -0,0 +1,38 @@
# unicode-property-aliases-ecmascript [![Build status](https://travis-ci.org/mathiasbynens/unicode-property-aliases-ecmascript.svg?branch=master)](https://travis-ci.org/mathiasbynens/unicode-property-aliases-ecmascript)
_unicode-property-aliases-ecmascript_ offers Unicode property alias mappings in an easy-to-consume JavaScript format. It only contains the Unicode property names that are supported in [ECMAScript RegExp property escapes](https://github.com/tc39/proposal-regexp-unicode-property-escapes).
Its based on [the `PropertyAliases.txt` data for Unicode v12.0.0](http://unicode.org/Public/12.0.0/ucd/PropertyAliases.txt).
## Installation
To use _unicode-property-aliases-ecmascript_ programmatically, install it as a dependency via [npm](https://www.npmjs.com/):
```bash
$ npm install unicode-property-aliases-ecmascript
```
Then, `require` it:
```js
const propertyAliases = require('unicode-property-aliases-ecmascript');
```
## Usage
This module exports a `Map` object. The most common usage is to convert a property alias to its canonical form:
```js
propertyAliases.get('scx')
// → 'Script_Extensions'
```
## Author
| [![twitter/mathias](https://gravatar.com/avatar/24e08a9ea84deb17ae121074d0f17125?s=70)](https://twitter.com/mathias "Follow @mathias on Twitter") |
|---|
| [Mathias Bynens](https://mathiasbynens.be/) |
## License
_unicode-property-aliases-ecmascript_ is available under the [MIT](https://mths.be/mit) license.

View file

@ -0,0 +1,57 @@
// Generated using `npm run build`. Do not edit!
module.exports = new Map([
['scx', 'Script_Extensions'],
['sc', 'Script'],
['gc', 'General_Category'],
['AHex', 'ASCII_Hex_Digit'],
['Alpha', 'Alphabetic'],
['Bidi_C', 'Bidi_Control'],
['Bidi_M', 'Bidi_Mirrored'],
['Cased', 'Cased'],
['CI', 'Case_Ignorable'],
['CWCF', 'Changes_When_Casefolded'],
['CWCM', 'Changes_When_Casemapped'],
['CWKCF', 'Changes_When_NFKC_Casefolded'],
['CWL', 'Changes_When_Lowercased'],
['CWT', 'Changes_When_Titlecased'],
['CWU', 'Changes_When_Uppercased'],
['Dash', 'Dash'],
['Dep', 'Deprecated'],
['DI', 'Default_Ignorable_Code_Point'],
['Dia', 'Diacritic'],
['EBase', 'Emoji_Modifier_Base'],
['EComp', 'Emoji_Component'],
['EMod', 'Emoji_Modifier'],
['Emoji', 'Emoji'],
['EPres', 'Emoji_Presentation'],
['Ext', 'Extender'],
['ExtPict', 'Extended_Pictographic'],
['Gr_Base', 'Grapheme_Base'],
['Gr_Ext', 'Grapheme_Extend'],
['Hex', 'Hex_Digit'],
['IDC', 'ID_Continue'],
['Ideo', 'Ideographic'],
['IDS', 'ID_Start'],
['IDSB', 'IDS_Binary_Operator'],
['IDST', 'IDS_Trinary_Operator'],
['Join_C', 'Join_Control'],
['LOE', 'Logical_Order_Exception'],
['Lower', 'Lowercase'],
['Math', 'Math'],
['NChar', 'Noncharacter_Code_Point'],
['Pat_Syn', 'Pattern_Syntax'],
['Pat_WS', 'Pattern_White_Space'],
['QMark', 'Quotation_Mark'],
['Radical', 'Radical'],
['RI', 'Regional_Indicator'],
['SD', 'Soft_Dotted'],
['STerm', 'Sentence_Terminal'],
['Term', 'Terminal_Punctuation'],
['UIdeo', 'Unified_Ideograph'],
['Upper', 'Uppercase'],
['VS', 'Variation_Selector'],
['WSpace', 'White_Space'],
['space', 'White_Space'],
['XIDC', 'XID_Continue'],
['XIDS', 'XID_Start']
]);

View file

@ -0,0 +1,41 @@
{
"name": "unicode-property-aliases-ecmascript",
"version": "1.1.0",
"description": "Unicode property alias mappings in JavaScript format for property names that are supported in ECMAScript RegExp property escapes.",
"homepage": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript",
"main": "index.js",
"engines": {
"node": ">=4"
},
"files": [
"LICENSE-MIT.txt",
"index.js"
],
"keywords": [
"unicode",
"unicode-data",
"alias",
"aliases",
"property alias"
],
"license": "MIT",
"author": {
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
},
"repository": {
"type": "git",
"url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript.git"
},
"bugs": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript/issues",
"devDependencies": {
"ava": "*",
"jsesc": "^2.5.2",
"unicode-canonical-property-names-ecmascript": "^1.0.4"
},
"scripts": {
"download": "curl http://unicode.org/Public/13.0.0/ucd/PropertyAliases.txt > data/PropertyAliases.txt",
"build": "node scripts/build.js",
"test": "ava tests/tests.js"
}
}