flowcore-fn 2.8.2 → 2.8.4
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/pkg-index.css +21 -2
- package/package.json +6 -3
package/dist/pkg-index.css
CHANGED
|
@@ -122,6 +122,8 @@
|
|
|
122
122
|
:host {
|
|
123
123
|
line-height: 1.5;
|
|
124
124
|
-webkit-text-size-adjust: 100%;
|
|
125
|
+
-moz-tab-size: 4;
|
|
126
|
+
-o-tab-size: 4;
|
|
125
127
|
tab-size: 4;
|
|
126
128
|
font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
|
|
127
129
|
font-feature-settings: var(--default-font-feature-settings, normal);
|
|
@@ -239,10 +241,19 @@
|
|
|
239
241
|
::file-selector-button {
|
|
240
242
|
margin-inline-end: 4px;
|
|
241
243
|
}
|
|
244
|
+
::-moz-placeholder {
|
|
245
|
+
opacity: 1;
|
|
246
|
+
}
|
|
242
247
|
::placeholder {
|
|
243
248
|
opacity: 1;
|
|
244
249
|
}
|
|
245
250
|
@supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
|
|
251
|
+
::-moz-placeholder {
|
|
252
|
+
color: currentcolor;
|
|
253
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
254
|
+
color: color-mix(in oklab, currentcolor 50%, transparent);
|
|
255
|
+
}
|
|
256
|
+
}
|
|
246
257
|
::placeholder {
|
|
247
258
|
color: currentcolor;
|
|
248
259
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -286,6 +297,8 @@
|
|
|
286
297
|
button,
|
|
287
298
|
input:where([type=button], [type=reset], [type=submit]),
|
|
288
299
|
::file-selector-button {
|
|
300
|
+
-webkit-appearance: button;
|
|
301
|
+
-moz-appearance: button;
|
|
289
302
|
appearance: button;
|
|
290
303
|
}
|
|
291
304
|
::-webkit-inner-spin-button,
|
|
@@ -734,6 +747,7 @@
|
|
|
734
747
|
}
|
|
735
748
|
}
|
|
736
749
|
.gap-x-6 {
|
|
750
|
+
-moz-column-gap: calc(var(--spacing) * 6);
|
|
737
751
|
column-gap: calc(var(--spacing) * 6);
|
|
738
752
|
}
|
|
739
753
|
.space-x-1\.5 {
|
|
@@ -1385,6 +1399,9 @@
|
|
|
1385
1399
|
-moz-osx-font-smoothing: grayscale;
|
|
1386
1400
|
}
|
|
1387
1401
|
.placeholder-slate-400 {
|
|
1402
|
+
&::-moz-placeholder {
|
|
1403
|
+
color: var(--color-slate-400);
|
|
1404
|
+
}
|
|
1388
1405
|
&::placeholder {
|
|
1389
1406
|
color: var(--color-slate-400);
|
|
1390
1407
|
}
|
|
@@ -1469,7 +1486,6 @@
|
|
|
1469
1486
|
}
|
|
1470
1487
|
.backdrop-blur-sm {
|
|
1471
1488
|
--tw-backdrop-blur: blur(var(--blur-sm));
|
|
1472
|
-
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1473
1489
|
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
1474
1490
|
}
|
|
1475
1491
|
.transition {
|
|
@@ -1491,7 +1507,6 @@
|
|
|
1491
1507
|
scale,
|
|
1492
1508
|
rotate,
|
|
1493
1509
|
filter,
|
|
1494
|
-
-webkit-backdrop-filter,
|
|
1495
1510
|
backdrop-filter,
|
|
1496
1511
|
display,
|
|
1497
1512
|
content-visibility,
|
|
@@ -1547,6 +1562,7 @@
|
|
|
1547
1562
|
}
|
|
1548
1563
|
.select-none {
|
|
1549
1564
|
-webkit-user-select: none;
|
|
1565
|
+
-moz-user-select: none;
|
|
1550
1566
|
user-select: none;
|
|
1551
1567
|
}
|
|
1552
1568
|
.peer-checked\:bg-blue-600 {
|
|
@@ -1566,6 +1582,9 @@
|
|
|
1566
1582
|
}
|
|
1567
1583
|
}
|
|
1568
1584
|
.placeholder\:text-slate-400 {
|
|
1585
|
+
&::-moz-placeholder {
|
|
1586
|
+
color: var(--color-slate-400);
|
|
1587
|
+
}
|
|
1569
1588
|
&::placeholder {
|
|
1570
1589
|
color: var(--color-slate-400);
|
|
1571
1590
|
}
|
package/package.json
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowcore-fn",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.4",
|
|
4
4
|
"main": "dist/pkg-index.js",
|
|
5
5
|
"module": "dist/pkg-index.mjs",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
8
8
|
],
|
|
9
|
+
|
|
9
10
|
"scripts": {
|
|
10
|
-
|
|
11
|
+
"dev": "next dev",
|
|
11
12
|
"build": "next build",
|
|
12
|
-
"build:pkg": "tsup"
|
|
13
|
+
"build:pkg": "tsup && postcss dist/pkg-index.css --config postcss.package.config.mjs -o dist/pkg-index.css"
|
|
13
14
|
},
|
|
15
|
+
|
|
14
16
|
"peerDependencies": {
|
|
15
17
|
"next": ">=14.0.0",
|
|
16
18
|
"react": ">=18.0.0",
|
|
@@ -25,6 +27,7 @@
|
|
|
25
27
|
"eslint": "^9",
|
|
26
28
|
"eslint-config-next": "16.2.10",
|
|
27
29
|
"next": "^16.2.10",
|
|
30
|
+
"postcss-prefix-selector": "^2.1.1",
|
|
28
31
|
"react": "^19.2.4",
|
|
29
32
|
"react-dom": "^19.2.4",
|
|
30
33
|
"tailwindcss": "^4",
|