@pandacss/generator 0.0.0-dev-20230918163156 → 0.0.0-dev-20230919122009
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.js +19 -5
- package/dist/index.mjs +19 -5
- package/package.json +9 -9
package/dist/index.js
CHANGED
|
@@ -228,7 +228,6 @@ function generateResetCss(ctx, scope = "") {
|
|
|
228
228
|
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
229
229
|
'Noto Color Emoji';
|
|
230
230
|
-webkit-text-size-adjust: 100%;
|
|
231
|
-
-webkit-text-size-adjust: 100%;
|
|
232
231
|
-webkit-font-smoothing: antialiased;
|
|
233
232
|
-moz-osx-font-smoothing: grayscale;
|
|
234
233
|
-moz-tab-size: 4;
|
|
@@ -372,24 +371,39 @@ function generateResetCss(ctx, scope = "") {
|
|
|
372
371
|
font-family: var(--global-font-mono, var(--font-fallback));
|
|
373
372
|
}
|
|
374
373
|
|
|
375
|
-
|
|
374
|
+
|
|
375
|
+
${selector}input[type="text"],
|
|
376
|
+
${selector}input[type="email"],
|
|
377
|
+
${selector}input[type="search"],
|
|
378
|
+
${selector}input[type="password"] {
|
|
379
|
+
-webkit-appearance: none;
|
|
380
|
+
-moz-appearance: none;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
${selector}input[type='search'] {
|
|
376
384
|
-webkit-appearance: textfield;
|
|
377
385
|
outline-offset: -2px;
|
|
378
386
|
}
|
|
379
387
|
|
|
380
|
-
${selector}::-webkit-search-decoration
|
|
388
|
+
${selector}::-webkit-search-decoration,
|
|
389
|
+
${selector}::-webkit-search-cancel-button {
|
|
381
390
|
-webkit-appearance: none;
|
|
382
391
|
}
|
|
383
392
|
|
|
384
393
|
${selector}::-webkit-file-upload-button {
|
|
385
394
|
-webkit-appearance: button;
|
|
395
|
+
font: inherit;
|
|
386
396
|
}
|
|
387
397
|
|
|
388
|
-
${selector}::-webkit-inner-spin-button,
|
|
389
|
-
${selector}::-webkit-outer-spin-button {
|
|
398
|
+
${selector}input[type="number"]::-webkit-inner-spin-button,
|
|
399
|
+
${selector}input[type="number"]::-webkit-outer-spin-button {
|
|
390
400
|
height: auto;
|
|
391
401
|
}
|
|
392
402
|
|
|
403
|
+
${selector}input[type='number']{
|
|
404
|
+
-moz-appearance: textfield;
|
|
405
|
+
}
|
|
406
|
+
|
|
393
407
|
${selector}:-moz-ui-invalid {
|
|
394
408
|
box-shadow: none;
|
|
395
409
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -197,7 +197,6 @@ function generateResetCss(ctx, scope = "") {
|
|
|
197
197
|
'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
198
198
|
'Noto Color Emoji';
|
|
199
199
|
-webkit-text-size-adjust: 100%;
|
|
200
|
-
-webkit-text-size-adjust: 100%;
|
|
201
200
|
-webkit-font-smoothing: antialiased;
|
|
202
201
|
-moz-osx-font-smoothing: grayscale;
|
|
203
202
|
-moz-tab-size: 4;
|
|
@@ -341,24 +340,39 @@ function generateResetCss(ctx, scope = "") {
|
|
|
341
340
|
font-family: var(--global-font-mono, var(--font-fallback));
|
|
342
341
|
}
|
|
343
342
|
|
|
344
|
-
|
|
343
|
+
|
|
344
|
+
${selector}input[type="text"],
|
|
345
|
+
${selector}input[type="email"],
|
|
346
|
+
${selector}input[type="search"],
|
|
347
|
+
${selector}input[type="password"] {
|
|
348
|
+
-webkit-appearance: none;
|
|
349
|
+
-moz-appearance: none;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
${selector}input[type='search'] {
|
|
345
353
|
-webkit-appearance: textfield;
|
|
346
354
|
outline-offset: -2px;
|
|
347
355
|
}
|
|
348
356
|
|
|
349
|
-
${selector}::-webkit-search-decoration
|
|
357
|
+
${selector}::-webkit-search-decoration,
|
|
358
|
+
${selector}::-webkit-search-cancel-button {
|
|
350
359
|
-webkit-appearance: none;
|
|
351
360
|
}
|
|
352
361
|
|
|
353
362
|
${selector}::-webkit-file-upload-button {
|
|
354
363
|
-webkit-appearance: button;
|
|
364
|
+
font: inherit;
|
|
355
365
|
}
|
|
356
366
|
|
|
357
|
-
${selector}::-webkit-inner-spin-button,
|
|
358
|
-
${selector}::-webkit-outer-spin-button {
|
|
367
|
+
${selector}input[type="number"]::-webkit-inner-spin-button,
|
|
368
|
+
${selector}input[type="number"]::-webkit-outer-spin-button {
|
|
359
369
|
height: auto;
|
|
360
370
|
}
|
|
361
371
|
|
|
372
|
+
${selector}input[type='number']{
|
|
373
|
+
-moz-appearance: textfield;
|
|
374
|
+
}
|
|
375
|
+
|
|
362
376
|
${selector}:-moz-ui-invalid {
|
|
363
377
|
box-shadow: none;
|
|
364
378
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pandacss/generator",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20230919122009",
|
|
4
4
|
"description": "The css generator for css panda",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -19,18 +19,18 @@
|
|
|
19
19
|
"outdent": " ^0.8.0",
|
|
20
20
|
"pluralize": "8.0.0",
|
|
21
21
|
"postcss": "8.4.27",
|
|
22
|
-
"ts-pattern": "5.0.
|
|
23
|
-
"@pandacss/core": "0.0.0-dev-
|
|
24
|
-
"@pandacss/is-valid-prop": "0.0.0-dev-
|
|
25
|
-
"@pandacss/logger": "0.0.0-dev-
|
|
26
|
-
"@pandacss/shared": "0.0.0-dev-
|
|
27
|
-
"@pandacss/token-dictionary": "0.0.0-dev-
|
|
28
|
-
"@pandacss/types": "0.0.0-dev-
|
|
22
|
+
"ts-pattern": "5.0.5",
|
|
23
|
+
"@pandacss/core": "0.0.0-dev-20230919122009",
|
|
24
|
+
"@pandacss/is-valid-prop": "0.0.0-dev-20230919122009",
|
|
25
|
+
"@pandacss/logger": "0.0.0-dev-20230919122009",
|
|
26
|
+
"@pandacss/shared": "0.0.0-dev-20230919122009",
|
|
27
|
+
"@pandacss/token-dictionary": "0.0.0-dev-20230919122009",
|
|
28
|
+
"@pandacss/types": "0.0.0-dev-20230919122009"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/pluralize": "0.0.30",
|
|
32
32
|
"hookable": "5.5.3",
|
|
33
|
-
"@pandacss/fixture": "0.0.0-dev-
|
|
33
|
+
"@pandacss/fixture": "0.0.0-dev-20230919122009"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"prebuild": "tsx scripts/prebuild.ts",
|