@fileverse/ui 2.3.0 → 3.0.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/dist/index.cjs.js +1466 -1463
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +13 -4
- package/dist/index.es.d.ts +1 -1
- package/dist/index.es.js +5374 -5338
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
! tailwindcss v3.4.
|
|
2
|
+
! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
|
|
3
3
|
*//*
|
|
4
4
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
|
5
5
|
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
|
|
@@ -179,6 +179,7 @@ textarea {
|
|
|
179
179
|
font-size: 100%; /* 1 */
|
|
180
180
|
font-weight: inherit; /* 1 */
|
|
181
181
|
line-height: inherit; /* 1 */
|
|
182
|
+
letter-spacing: inherit; /* 1 */
|
|
182
183
|
color: inherit; /* 1 */
|
|
183
184
|
margin: 0; /* 2 */
|
|
184
185
|
padding: 0; /* 3 */
|
|
@@ -199,9 +200,9 @@ select {
|
|
|
199
200
|
*/
|
|
200
201
|
|
|
201
202
|
button,
|
|
202
|
-
[type='button'],
|
|
203
|
-
[type='reset'],
|
|
204
|
-
[type='submit'] {
|
|
203
|
+
input:where([type='button']),
|
|
204
|
+
input:where([type='reset']),
|
|
205
|
+
input:where([type='submit']) {
|
|
205
206
|
-webkit-appearance: button; /* 1 */
|
|
206
207
|
background-color: transparent; /* 2 */
|
|
207
208
|
background-image: none; /* 2 */
|
|
@@ -895,6 +896,10 @@ video {
|
|
|
895
896
|
--tw-backdrop-opacity: ;
|
|
896
897
|
--tw-backdrop-saturate: ;
|
|
897
898
|
--tw-backdrop-sepia: ;
|
|
899
|
+
--tw-contain-size: ;
|
|
900
|
+
--tw-contain-layout: ;
|
|
901
|
+
--tw-contain-paint: ;
|
|
902
|
+
--tw-contain-style: ;
|
|
898
903
|
}
|
|
899
904
|
|
|
900
905
|
::backdrop {
|
|
@@ -945,6 +950,10 @@ video {
|
|
|
945
950
|
--tw-backdrop-opacity: ;
|
|
946
951
|
--tw-backdrop-saturate: ;
|
|
947
952
|
--tw-backdrop-sepia: ;
|
|
953
|
+
--tw-contain-size: ;
|
|
954
|
+
--tw-contain-layout: ;
|
|
955
|
+
--tw-contain-paint: ;
|
|
956
|
+
--tw-contain-style: ;
|
|
948
957
|
}
|
|
949
958
|
.container {
|
|
950
959
|
width: 100%;
|
package/dist/index.es.d.ts
CHANGED
|
@@ -182,7 +182,7 @@ declare const Icons: {
|
|
|
182
182
|
Search: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
|
|
183
183
|
Section: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
|
|
184
184
|
Settings: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
|
|
185
|
-
Share2:
|
|
185
|
+
Share2: default_2.ForwardRefExoticComponent<Omit<IconProps, "ref"> & default_2.RefAttributes<SVGSVGElement>>;
|
|
186
186
|
Share: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
|
|
187
187
|
Facebook: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
|
|
188
188
|
Instagram: ({ fill, width, height, ...props }: IconProps) => JSX_2.Element;
|