@tight-embedded/react 1.0.0-alpha.0
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/README.md +11 -0
- package/dist/duplet.css +60 -0
- package/dist/duplet.css.gz +0 -0
- package/dist/fonts/Duplet-Bold.woff +0 -0
- package/dist/fonts/Duplet-Bold.woff.gz +0 -0
- package/dist/fonts/Duplet-Bold.woff2 +0 -0
- package/dist/fonts/Duplet-BoldItalic.woff +0 -0
- package/dist/fonts/Duplet-BoldItalic.woff.gz +0 -0
- package/dist/fonts/Duplet-BoldItalic.woff2 +0 -0
- package/dist/fonts/Duplet-BoldItalic.woff2.gz +0 -0
- package/dist/fonts/Duplet-Italic.woff +0 -0
- package/dist/fonts/Duplet-Italic.woff.gz +0 -0
- package/dist/fonts/Duplet-Italic.woff2 +0 -0
- package/dist/fonts/Duplet-Regular.woff +0 -0
- package/dist/fonts/Duplet-Regular.woff.gz +0 -0
- package/dist/fonts/Duplet-Regular.woff2 +0 -0
- package/dist/fonts/Duplet-Semibold.woff +0 -0
- package/dist/fonts/Duplet-Semibold.woff.gz +0 -0
- package/dist/fonts/Duplet-Semibold.woff2 +0 -0
- package/dist/fonts/Duplet-SemiboldItalic.woff +0 -0
- package/dist/fonts/Duplet-SemiboldItalic.woff.gz +0 -0
- package/dist/fonts/Duplet-SemiboldItalic.woff2 +0 -0
- package/dist/fonts/Inter-Bold.ttf +0 -0
- package/dist/fonts/Inter-Bold.ttf.gz +0 -0
- package/dist/fonts/Inter-ExtraLight.ttf +0 -0
- package/dist/fonts/Inter-ExtraLight.ttf.gz +0 -0
- package/dist/fonts/Inter-Light.ttf +0 -0
- package/dist/fonts/Inter-Light.ttf.gz +0 -0
- package/dist/fonts/Inter-Medium.ttf +0 -0
- package/dist/fonts/Inter-Medium.ttf.gz +0 -0
- package/dist/fonts/Inter-Regular.ttf +0 -0
- package/dist/fonts/Inter-Regular.ttf.gz +0 -0
- package/dist/fonts/Inter-SemiBold.ttf +0 -0
- package/dist/fonts/Inter-SemiBold.ttf.gz +0 -0
- package/dist/index.css +2974 -0
- package/dist/index.css.gz +0 -0
- package/dist/index.d.ts +81 -0
- package/dist/index.js +3285 -0
- package/dist/index.js.gz +0 -0
- package/dist/index.js.map +1 -0
- package/dist/index.js.map.gz +0 -0
- package/dist/inter.css +36 -0
- package/dist/inter.css.gz +0 -0
- package/package.json +110 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# Tight React Component Library
|
|
2
|
+
|
|
3
|
+
In order to use this library you'll need to generate an `accessToken` via our [Authentication Endpoint](https://v6.docs.tight.com/api-reference/authentication).
|
|
4
|
+
|
|
5
|
+
Don't have credentials yet? [Get started with Tight](https://www.tight.com/#get-started).
|
|
6
|
+
|
|
7
|
+
Need help integrating the library? [Learn how to embed Tight's Embeddable UI](https://v6.docs.tight.com/embeddable-ui/patterns/embedding).
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
package/dist/duplet.css
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
*
|
|
4
|
+
* Font Family: Duplet
|
|
5
|
+
* Designed by: Diana Ovezea, Rafał Buchner
|
|
6
|
+
* URL: https://www.indiantypefoundry.com/fonts/duplet
|
|
7
|
+
*
|
|
8
|
+
* Font Styles:
|
|
9
|
+
* Duplet Regular
|
|
10
|
+
* Duplet Italic
|
|
11
|
+
* Duplet Semibold
|
|
12
|
+
* Duplet Semibold Italic
|
|
13
|
+
* Duplet Bold
|
|
14
|
+
* Duplet Bold Italic
|
|
15
|
+
*
|
|
16
|
+
* © 2025 Indian Type Foundry
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
@font-face {
|
|
20
|
+
font-family: 'Duplet Regular';
|
|
21
|
+
src: url('./fonts/Duplet-Regular.woff') format('woff'), url('./fonts/Duplet-Regular.woff2') format('woff2');
|
|
22
|
+
font-weight: normal;
|
|
23
|
+
font-style: normal;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
@font-face {
|
|
27
|
+
font-family: 'Duplet Italic';
|
|
28
|
+
src: url('./fonts/Duplet-Italic.woff') format('woff'), url('./fonts/Duplet-Italic.woff2') format('woff2');
|
|
29
|
+
font-weight: normal;
|
|
30
|
+
font-style: normal;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@font-face {
|
|
34
|
+
font-family: 'Duplet Semibold';
|
|
35
|
+
src: url('./fonts/Duplet-Semibold.woff') format('woff'), url('./fonts/Duplet-Semibold.woff2') format('woff2');
|
|
36
|
+
font-weight: normal;
|
|
37
|
+
font-style: normal;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@font-face {
|
|
41
|
+
font-family: 'Duplet Semibold Italic';
|
|
42
|
+
src: url('./fonts/Duplet-SemiboldItalic.woff') format('woff'), url('./fonts/Duplet-SemiboldItalic.woff2') format('woff2');
|
|
43
|
+
font-weight: normal;
|
|
44
|
+
font-style: normal;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
@font-face {
|
|
48
|
+
font-family: 'Duplet Bold';
|
|
49
|
+
src: url('./fonts/Duplet-Bold.woff') format('woff'), url('./fonts/Duplet-Bold.woff2') format('woff2');
|
|
50
|
+
font-weight: normal;
|
|
51
|
+
font-style: normal;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@font-face {
|
|
55
|
+
font-family: 'Duplet Bold Italic';
|
|
56
|
+
src: url('./fonts/Duplet-BoldItalic.woff') format('woff'), url('./fonts/Duplet-BoldItalic.woff2') format('woff2');
|
|
57
|
+
font-weight: normal;
|
|
58
|
+
font-style: normal;
|
|
59
|
+
}
|
|
60
|
+
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|