@layerfi/components 0.1.17 → 0.1.19
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/LICENSE +21 -0
- package/README.md +15 -5
- package/dist/esm/index.js +571 -520
- package/dist/esm/index.js.map +4 -4
- package/dist/index.d.ts +14 -0
- package/dist/index.js +701 -649
- package/dist/index.js.map +4 -4
- package/dist/styles/index.css +76 -14
- package/dist/styles/index.css.map +2 -2
- package/package.json +2 -2
- package/image.png +0 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2023 Layer Financial
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,19 +1,29 @@
|
|
|
1
1
|
# Layer Financial React Components
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
Layer's embeddable React component library provides an out of the box accounting experience. This project emphasizes composability and brandability, allowing you to
|
|
4
|
+
|
|
5
|
+
1. Use full page layouts we've already tested and used _or_ layout individual components however you choose.
|
|
6
|
+
2. Brand components with your company colors, fonts, and more.
|
|
7
|
+
|
|
8
|
+
All you need to get started is sandbox development credentials - reach out [here](https://www.layerfi.com/#contact-sale) if you don't have those yet!
|
|
9
|
+
|
|
10
|
+
#### Related links
|
|
11
|
+
|
|
12
|
+
- Layer home: https://www.layerfi.com
|
|
13
|
+
- Documentation: https://docs.layerfi.com/introduction
|
|
14
|
+
- NPM: https://www.npmjs.com/package/@layerfi/components
|
|
5
15
|
|
|
6
16
|
<br />
|
|
7
17
|
|
|
8
18
|
## Installation
|
|
9
19
|
|
|
10
|
-
```
|
|
20
|
+
```ts
|
|
11
21
|
npm install --save @layerfi/components
|
|
12
22
|
```
|
|
13
23
|
|
|
14
24
|
or
|
|
15
25
|
|
|
16
|
-
```
|
|
26
|
+
```ts
|
|
17
27
|
yarn install @layerfi/components
|
|
18
28
|
```
|
|
19
29
|
|
|
@@ -185,7 +195,7 @@ body .Layer__component {
|
|
|
185
195
|
}
|
|
186
196
|
```
|
|
187
197
|
|
|
188
|
-
The full list of variables is listed in the `variables.css file
|
|
198
|
+
The full list of variables is listed in the [`variables.css`](https://github.com/Layer-Fi/layer-react/blob/main/src/styles/variables.scss) file and contains:
|
|
189
199
|
|
|
190
200
|
```scss
|
|
191
201
|
// 1. BASE VARIABLES:
|