@grandbazar/ui-baza 1.2.13 → 1.2.14

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 CHANGED
@@ -2401,10 +2401,10 @@ function RadioButton({ className, label, ...props }) {
2401
2401
 
2402
2402
  const DEFAULT_CUSTOM_SEARCH_BUTTON_WIDTH = 64;
2403
2403
 
2404
- const textFieldAreaWrapper = "_textFieldAreaWrapper_ay9ou_2";
2405
- const textFieldAreaLabel = "_textFieldAreaLabel_ay9ou_14";
2406
- const textFieldAreaLabelSuffix = "_textFieldAreaLabelSuffix_ay9ou_24";
2407
- const textFieldArea = "_textFieldArea_ay9ou_2";
2404
+ const textFieldAreaWrapper = "_textFieldAreaWrapper_pia91_2";
2405
+ const textFieldAreaLabel = "_textFieldAreaLabel_pia91_14";
2406
+ const textFieldAreaLabelSuffix = "_textFieldAreaLabelSuffix_pia91_24";
2407
+ const textFieldArea = "_textFieldArea_pia91_2";
2408
2408
  const styles$b = {
2409
2409
  textFieldAreaWrapper: textFieldAreaWrapper,
2410
2410
  textFieldAreaLabel: textFieldAreaLabel,
@@ -2438,9 +2438,9 @@ function TextFieldArea({
2438
2438
  ] }) : textFieldArea;
2439
2439
  }
2440
2440
 
2441
- const textFieldInputWrapper = "_textFieldInputWrapper_qpk1n_2";
2442
- const textFieldInputLabel = "_textFieldInputLabel_qpk1n_9";
2443
- const textFieldInput = "_textFieldInput_qpk1n_2";
2441
+ const textFieldInputWrapper = "_textFieldInputWrapper_1m8sa_2";
2442
+ const textFieldInputLabel = "_textFieldInputLabel_1m8sa_9";
2443
+ const textFieldInput = "_textFieldInput_1m8sa_2";
2444
2444
  const styles$a = {
2445
2445
  textFieldInputWrapper: textFieldInputWrapper,
2446
2446
  textFieldInputLabel: textFieldInputLabel,
package/dist/index.js CHANGED
@@ -2397,10 +2397,10 @@ function RadioButton({ className, label, ...props }) {
2397
2397
 
2398
2398
  const DEFAULT_CUSTOM_SEARCH_BUTTON_WIDTH = 64;
2399
2399
 
2400
- const textFieldAreaWrapper = "_textFieldAreaWrapper_ay9ou_2";
2401
- const textFieldAreaLabel = "_textFieldAreaLabel_ay9ou_14";
2402
- const textFieldAreaLabelSuffix = "_textFieldAreaLabelSuffix_ay9ou_24";
2403
- const textFieldArea = "_textFieldArea_ay9ou_2";
2400
+ const textFieldAreaWrapper = "_textFieldAreaWrapper_pia91_2";
2401
+ const textFieldAreaLabel = "_textFieldAreaLabel_pia91_14";
2402
+ const textFieldAreaLabelSuffix = "_textFieldAreaLabelSuffix_pia91_24";
2403
+ const textFieldArea = "_textFieldArea_pia91_2";
2404
2404
  const styles$b = {
2405
2405
  textFieldAreaWrapper: textFieldAreaWrapper,
2406
2406
  textFieldAreaLabel: textFieldAreaLabel,
@@ -2434,9 +2434,9 @@ function TextFieldArea({
2434
2434
  ] }) : textFieldArea;
2435
2435
  }
2436
2436
 
2437
- const textFieldInputWrapper = "_textFieldInputWrapper_qpk1n_2";
2438
- const textFieldInputLabel = "_textFieldInputLabel_qpk1n_9";
2439
- const textFieldInput = "_textFieldInput_qpk1n_2";
2437
+ const textFieldInputWrapper = "_textFieldInputWrapper_1m8sa_2";
2438
+ const textFieldInputLabel = "_textFieldInputLabel_1m8sa_9";
2439
+ const textFieldInput = "_textFieldInput_1m8sa_2";
2440
2440
  const styles$a = {
2441
2441
  textFieldInputWrapper: textFieldInputWrapper,
2442
2442
  textFieldInputLabel: textFieldInputLabel,
package/dist/style.css CHANGED
@@ -1306,7 +1306,7 @@ textarea {
1306
1306
  }
1307
1307
  }
1308
1308
  @layer ui_baza_components {
1309
- ._textFieldAreaWrapper_ay9ou_2 {
1309
+ ._textFieldAreaWrapper_pia91_2 {
1310
1310
  display: flex;
1311
1311
  position: relative;
1312
1312
  flex-grow: 1;
@@ -1318,7 +1318,7 @@ textarea {
1318
1318
  }
1319
1319
  }
1320
1320
 
1321
- ._textFieldAreaLabel_ay9ou_14 {
1321
+ ._textFieldAreaLabel_pia91_14 {
1322
1322
  z-index: 0;
1323
1323
  position: absolute;
1324
1324
  left: 0;
@@ -1328,7 +1328,7 @@ textarea {
1328
1328
  transition: inherit;
1329
1329
  }
1330
1330
 
1331
- ._textFieldAreaLabelSuffix_ay9ou_24 {
1331
+ ._textFieldAreaLabelSuffix_pia91_24 {
1332
1332
  z-index: 0;
1333
1333
  position: absolute;
1334
1334
  right: 0;
@@ -1339,11 +1339,11 @@ textarea {
1339
1339
  transition: inherit;
1340
1340
  }
1341
1341
 
1342
- ._textFieldAreaWrapper_ay9ou_2:has(._textFieldArea_ay9ou_2:disabled) ._textFieldAreaLabel_ay9ou_14 {
1342
+ ._textFieldAreaWrapper_pia91_2:has(._textFieldArea_pia91_2:disabled) ._textFieldAreaLabel_pia91_14 {
1343
1343
  color: var(--color-neutral-340);
1344
1344
  }
1345
1345
 
1346
- ._textFieldArea_ay9ou_2 {
1346
+ ._textFieldArea_pia91_2 {
1347
1347
  --text-area-min-height: 80px;
1348
1348
  z-index: 1;
1349
1349
  position: relative;
@@ -1354,6 +1354,12 @@ textarea {
1354
1354
  caret-color: var(--color-accent);
1355
1355
  transition: inherit;
1356
1356
 
1357
+ /* Firefox keeps a :focus-visible outline on the textarea; the field's focus
1358
+ ring lives on TextFieldRoot, so the native one is a doubled border. */
1359
+ &:focus-visible {
1360
+ outline: none;
1361
+ }
1362
+
1357
1363
  &::placeholder {
1358
1364
  color: var(--color-neutral-540);
1359
1365
  }
@@ -1368,14 +1374,14 @@ textarea {
1368
1374
  }
1369
1375
  }
1370
1376
  @layer ui_baza_components {
1371
- ._textFieldInputWrapper_qpk1n_2 {
1377
+ ._textFieldInputWrapper_1m8sa_2 {
1372
1378
  display: flex;
1373
1379
  position: relative;
1374
1380
  flex-grow: 1;
1375
1381
  transition: inherit;
1376
1382
  }
1377
1383
 
1378
- ._textFieldInputLabel_qpk1n_9 {
1384
+ ._textFieldInputLabel_1m8sa_9 {
1379
1385
  z-index: 0;
1380
1386
  position: absolute;
1381
1387
  left: 0;
@@ -1385,11 +1391,11 @@ textarea {
1385
1391
  transition: inherit;
1386
1392
  }
1387
1393
 
1388
- ._textFieldInputWrapper_qpk1n_2:has(._textFieldInput_qpk1n_2:disabled) ._textFieldInputLabel_qpk1n_9 {
1394
+ ._textFieldInputWrapper_1m8sa_2:has(._textFieldInput_1m8sa_2:disabled) ._textFieldInputLabel_1m8sa_9 {
1389
1395
  color: var(--color-neutral-340);
1390
1396
  }
1391
1397
 
1392
- ._textFieldInput_qpk1n_2 {
1398
+ ._textFieldInput_1m8sa_2 {
1393
1399
  z-index: 1;
1394
1400
  position: relative;
1395
1401
  flex-grow: 1;
@@ -1397,6 +1403,12 @@ textarea {
1397
1403
  caret-color: var(--color-accent);
1398
1404
  transition: inherit;
1399
1405
 
1406
+ /* Firefox keeps a :focus-visible outline on the input; the field's focus
1407
+ ring lives on TextFieldRoot, so the native one is a doubled border. */
1408
+ &:focus-visible {
1409
+ outline: none;
1410
+ }
1411
+
1400
1412
  &::placeholder {
1401
1413
  color: var(--color-neutral-540);
1402
1414
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grandbazar/ui-baza",
3
- "version": "1.2.13",
3
+ "version": "1.2.14",
4
4
  "description": "A lightweight and modular UI kit for building modern, accessible web interfaces. Designed for flexibility, scalability, and developer happiness.",
5
5
  "repository": {
6
6
  "type": "git",