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

12
assets_old/node_modules/rgb-regex/.editorconfig generated vendored Normal file
View file

@ -0,0 +1,12 @@
# http://editorconfig.org
root = true
[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[*.md]
trim_trailing_whitespace = false

1
assets_old/node_modules/rgb-regex/.npmignore generated vendored Normal file
View file

@ -0,0 +1 @@
node_modules/

5
assets_old/node_modules/rgb-regex/.travis.yml generated vendored Normal file
View file

@ -0,0 +1,5 @@
language: node_js
node_js:
- 0.10
- 0.11

21
assets_old/node_modules/rgb-regex/LICENSE.md generated vendored Normal file
View file

@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2015 John Otander
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.

51
assets_old/node_modules/rgb-regex/README.md generated vendored Normal file
View file

@ -0,0 +1,51 @@
# rgb-regex
[![Build Status](https://secure.travis-ci.org/regexps/rgb-regex.png?branch=master)](https://travis-ci.org/regexps/rgb-regex)
Regex for RGB color strings.
## Installation
```bash
npm install --save rgb-regex
```
## Usage
```javascript
var rgbRegex = require('rgb-regex');
rgbRegex({ exact: true }).test('rgb(12, 34, 56)'); // => true
rgbRegex({ exact: true }).test('unicorns'); // -> false
rgbRegex({ exact: true }).test('rgb(,,)'); // => false
rgbRegex().exec('rgb(12, 34, 56)');
// => [
// '12',
// '34',
// '56',
// index: 0,
// input: 'rgb(12,34,56)'
// ]
'rgb(12, 34, 56) cats and dogs'.match(rgbRegex());
// = ['rgb(12, 34, 56)']
```
## License
MIT
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request
Crafted with <3 by John Otander ([@4lpine](https://twitter.com/4lpine)).
***
> This package was initially generated with [yeoman](http://yeoman.io) and the [p generator](https://github.com/johnotander/generator-p.git).

9
assets_old/node_modules/rgb-regex/index.js generated vendored Normal file
View file

@ -0,0 +1,9 @@
'use strict';
module.exports = function rgbRegex(options) {
options = options || {};
return options.exact ?
/^rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)$/ :
/rgb\((\d{1,3}),\s*(\d{1,3}),\s*(\d{1,3})\)/ig;
}

36
assets_old/node_modules/rgb-regex/package.json generated vendored Normal file
View file

@ -0,0 +1,36 @@
{
"name": "rgb-regex",
"description": "Regex for RGB color strings.",
"author": "John Otander",
"version": "1.0.1",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/regexps/rgb-regex.git"
},
"keywords": [
"css",
"regex",
"regexp",
"regexps",
"rgb",
"color",
"regular",
"expression"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/regexps/rgb-regex/issues"
},
"homepage": "https://github.com/regexps/rgb-regex",
"dependencies": {},
"devDependencies": {
"mocha": "*"
}
}

51
assets_old/node_modules/rgb-regex/test/test.js generated vendored Normal file
View file

@ -0,0 +1,51 @@
var assert = require('assert');
var rgbRegex = require('..');
var rgbStrings = [
'rgb(12,34,56)',
'rgb(255, 255, 255)',
'rgb(1, 1,1)'
];
var inexactRgbStrings = [
'rgb(,,)',
'rGb(12,34,56)',
'rgb(12, 34, 200) ',
' rgb(12,34,56)',
'rgb(1,2,)'
];
describe('rgb-regex', function() {
describe('exact: true', function() {
it('should return a regex that matches exact rgb strings', function() {
rgbStrings.forEach(function(rgb) {
assert.ok(rgbRegex({ exact: true }).test(rgb));
});
});
it('should return a regex that does not match invalid rgb strings', function() {
inexactRgbStrings.forEach(function(invalidRgb) {
assert.ok(!rgbRegex({ exact: true }).test(invalidRgb));
});
});
});
describe('g', function() {
it('should match rgb strings', function() {
assert.deepEqual(
rgbStrings.join('foobar').match(rgbRegex()),
rgbStrings
)
});
it('should not match non rgb strings', function() {
assert.deepEqual(
inexactRgbStrings.join('foobar').match(rgbRegex()),
['rGb(12,34,56)', 'rgb(12, 34, 200)', 'rgb(12,34,56)']
);
});
});
});