@banyan_cloud/roots 2.0.64 → 2.0.66
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/dist/cjs/index.js +203 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/v2/index.js +222 -5
- package/dist/cjs/v2/index.js.map +1 -1
- package/dist/esm/components/tooltip/types/index.d.ts +1 -1
- package/dist/esm/components/v2/breadcrumbs/Breadcrumbs.d.ts +4 -0
- package/dist/esm/components/v2/breadcrumbs/InteractiveBreadcrumbs.d.ts +7 -0
- package/dist/esm/components/v2/breadcrumbs/assets/breadcrumbsArrow.d.ts +10 -0
- package/dist/esm/components/v2/breadcrumbs/assets/breadcrumbsHome.d.ts +10 -0
- package/dist/esm/components/v2/breadcrumbs/assets/breadcrumbsSplash.d.ts +10 -0
- package/dist/esm/components/v2/breadcrumbs/index.d.ts +2 -0
- package/dist/esm/components/v2/breadcrumbs/types/index.d.ts +30 -0
- package/dist/esm/components/v2/buttons/baseButton/types/index.d.ts +1 -1
- package/dist/esm/components/v2/buttons/button/types/index.d.ts +1 -1
- package/dist/esm/components/v2/inlineLoader/InlineLoader.d.ts +2 -0
- package/dist/esm/components/v2/inlineLoader/index.d.ts +1 -0
- package/dist/esm/components/v2/inlineLoader/types/index.d.ts +14 -0
- package/dist/esm/components/v2/link/Link.d.ts +1 -2
- package/dist/esm/components/v2/link/types/index.d.ts +4 -1
- package/dist/esm/index.js +203 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/v2/index.js +222 -5
- package/dist/esm/v2/index.js.map +1 -1
- package/package.json +16 -16
- package/src/styles/main.css +94 -94
- package/v2/index.d.ts +2 -0
- package/v2/index.esm.js +2 -0
- package/v2/index.js +7 -0
- package/v2/package.json +8 -0
package/package.json
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@banyan_cloud/roots",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.66",
|
|
4
4
|
"description": "Design System Library which drives the Banyan Cloud products",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
7
|
-
"types": "dist/esm/
|
|
7
|
+
"types": "dist/esm/index.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
"*": {
|
|
10
|
+
"v2": [
|
|
11
|
+
"v2/index.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
},
|
|
8
15
|
"exports": {
|
|
9
16
|
".": {
|
|
10
17
|
"import": "./dist/esm/index.js",
|
|
11
18
|
"require": "./dist/cjs/index.js",
|
|
12
|
-
"types": "./dist/esm/
|
|
19
|
+
"types": "./dist/esm/index.d.ts"
|
|
13
20
|
},
|
|
14
21
|
"./v2": {
|
|
15
|
-
"import": "./
|
|
16
|
-
"require": "./
|
|
17
|
-
"types": "./
|
|
18
|
-
}
|
|
19
|
-
"./styles": {
|
|
20
|
-
"import": "./src/styles/index.ts",
|
|
21
|
-
"require": "./src/styles/index.ts",
|
|
22
|
-
"types": "./dist/esm/src/styles/index.d.ts"
|
|
23
|
-
},
|
|
24
|
-
"./package.json": "./package.json",
|
|
25
|
-
"./dist/*": null,
|
|
26
|
-
"./src/*": null
|
|
22
|
+
"import": "./v2/index.esm.js",
|
|
23
|
+
"require": "./v2/index.js",
|
|
24
|
+
"types": "./v2/index.d.ts"
|
|
25
|
+
}
|
|
27
26
|
},
|
|
28
27
|
"files": [
|
|
29
28
|
"dist",
|
|
30
|
-
"src/styles"
|
|
29
|
+
"src/styles",
|
|
30
|
+
"v2"
|
|
31
31
|
],
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"registry": "https://registry.npmjs.org"
|
package/src/styles/main.css
CHANGED
|
@@ -1,150 +1,150 @@
|
|
|
1
1
|
* {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
2
|
+
padding: 0px;
|
|
3
|
+
margin: 0px;
|
|
4
|
+
box-sizing: border-box;
|
|
5
|
+
font-family: inherit;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
html,
|
|
9
9
|
body,
|
|
10
10
|
#root {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
min-height: 100%;
|
|
12
|
+
height: 100%;
|
|
13
|
+
scroll-behavior: smooth;
|
|
14
|
+
font-size: 12.5px;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
body {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
18
|
+
-webkit-font-smoothing: antialiased;
|
|
19
|
+
-moz-osx-font-smoothing: grayscale;
|
|
20
|
+
font-family: 'Poppins', sans-serif;
|
|
21
|
+
background-color: #ffffff;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
@font-face {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
25
|
+
font-family: Poppins;
|
|
26
|
+
font-style: normal;
|
|
27
|
+
font-weight: 100;
|
|
28
|
+
src: url('../../fonts/Poppins-Thin.ttf') format('truetype');
|
|
29
29
|
}
|
|
30
30
|
@font-face {
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
31
|
+
font-family: Poppins;
|
|
32
|
+
font-style: normal;
|
|
33
|
+
font-weight: 200;
|
|
34
|
+
src: url('../../fonts/Poppins-ExtraLight.ttf') format('truetype');
|
|
35
35
|
}
|
|
36
36
|
@font-face {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
37
|
+
font-family: Poppins;
|
|
38
|
+
font-style: normal;
|
|
39
|
+
font-weight: 300;
|
|
40
|
+
src: url('../../fonts/Poppins-Light.ttf') format('truetype');
|
|
41
41
|
}
|
|
42
42
|
@font-face {
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
font-family: Poppins;
|
|
44
|
+
font-style: normal;
|
|
45
|
+
font-weight: 400;
|
|
46
|
+
src: url('../../fonts/Poppins-Regular.ttf') format('truetype');
|
|
47
47
|
}
|
|
48
48
|
@font-face {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
49
|
+
font-family: Poppins;
|
|
50
|
+
font-style: normal;
|
|
51
|
+
font-weight: 500;
|
|
52
|
+
src: url('../../fonts/Poppins-Medium.ttf') format('truetype');
|
|
53
53
|
}
|
|
54
54
|
@font-face {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
55
|
+
font-family: Poppins;
|
|
56
|
+
font-style: normal;
|
|
57
|
+
font-weight: 600;
|
|
58
|
+
src: url('../../fonts/Poppins-SemiBold.ttf') format('truetype');
|
|
59
59
|
}
|
|
60
60
|
@font-face {
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
61
|
+
font-family: Poppins;
|
|
62
|
+
font-style: normal;
|
|
63
|
+
font-weight: 700;
|
|
64
|
+
src: url('../../fonts/Poppins-Bold.ttf') format('truetype');
|
|
65
65
|
}
|
|
66
66
|
@font-face {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
67
|
+
font-family: Poppins;
|
|
68
|
+
font-style: normal;
|
|
69
|
+
font-weight: 800;
|
|
70
|
+
src: url('../../fonts/Poppins-ExtraBold.ttf') format('truetype');
|
|
71
71
|
}
|
|
72
72
|
@font-face {
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
73
|
+
font-family: Poppins;
|
|
74
|
+
font-style: normal;
|
|
75
|
+
font-weight: 900;
|
|
76
|
+
src: url('../../fonts/Poppins-Black.ttf') format('truetype');
|
|
77
77
|
}
|
|
78
78
|
@font-face {
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
79
|
+
font-family: Jakarta;
|
|
80
|
+
font-style: normal;
|
|
81
|
+
font-weight: 400;
|
|
82
|
+
src: url('../../fonts/Jakarta-Regular.ttf') format('truetype');
|
|
83
83
|
}
|
|
84
84
|
@font-face {
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
85
|
+
font-family: Jakarta;
|
|
86
|
+
font-style: normal;
|
|
87
|
+
font-weight: 400;
|
|
88
|
+
src: url('../../fonts/Jakarta-Regular.ttf') format('truetype');
|
|
89
89
|
}
|
|
90
90
|
@font-face {
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
91
|
+
font-family: Jakarta;
|
|
92
|
+
font-style: normal;
|
|
93
|
+
font-weight: 500;
|
|
94
|
+
src: url('../../fonts/Jakarta-Medium.ttf') format('truetype');
|
|
95
95
|
}
|
|
96
96
|
@font-face {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
97
|
+
font-family: Jakarta;
|
|
98
|
+
font-style: normal;
|
|
99
|
+
font-weight: 600;
|
|
100
|
+
src: url('../../fonts/Jakarta-SemiBold.ttf') format('truetype');
|
|
101
101
|
}
|
|
102
102
|
@font-face {
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
103
|
+
font-family: Jakarta;
|
|
104
|
+
font-style: normal;
|
|
105
|
+
font-weight: 700;
|
|
106
|
+
src: url('../../fonts/Jakarta-Bold.ttf') format('truetype');
|
|
107
107
|
}
|
|
108
108
|
@font-face {
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
109
|
+
font-family: Jakarta;
|
|
110
|
+
font-style: normal;
|
|
111
|
+
font-weight: 400;
|
|
112
|
+
src: url('../../fonts/Jakarta-Regular.ttf') format('truetype');
|
|
113
113
|
}
|
|
114
114
|
@font-face {
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
115
|
+
font-family: Jakarta;
|
|
116
|
+
font-style: normal;
|
|
117
|
+
font-weight: 500;
|
|
118
|
+
src: url('../../fonts/Jakarta-Medium.ttf') format('truetype');
|
|
119
119
|
}
|
|
120
120
|
@font-face {
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
121
|
+
font-family: Jakarta;
|
|
122
|
+
font-style: normal;
|
|
123
|
+
font-weight: 600;
|
|
124
|
+
src: url('../../fonts/Jakarta-SemiBold.ttf') format('truetype');
|
|
125
125
|
}
|
|
126
126
|
@font-face {
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
127
|
+
font-family: Jakarta;
|
|
128
|
+
font-style: normal;
|
|
129
|
+
font-weight: 700;
|
|
130
|
+
src: url('../../fonts/Jakarta-Bold.ttf') format('truetype');
|
|
131
131
|
}
|
|
132
132
|
.app-container {
|
|
133
|
-
|
|
134
|
-
|
|
133
|
+
display: flex;
|
|
134
|
+
height: 100%;
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
.table {
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
138
|
+
border-collapse: collapse;
|
|
139
|
+
border-spacing: 0px;
|
|
140
|
+
width: 100%;
|
|
141
141
|
}
|
|
142
142
|
.table > tr > td,
|
|
143
143
|
.table > tr th {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
144
|
+
border: 1px solid #dddddd;
|
|
145
|
+
text-align: left;
|
|
146
|
+
padding: 8px;
|
|
147
147
|
}
|
|
148
148
|
.table > tr:nth-child(even) {
|
|
149
|
-
|
|
150
|
-
}/*# sourceMappingURL=main.css.map */
|
|
149
|
+
background-color: #dddddd;
|
|
150
|
+
} /*# sourceMappingURL=main.css.map */
|
package/v2/index.d.ts
ADDED
package/v2/index.esm.js
ADDED
package/v2/index.js
ADDED