@public-ui/themes 2.0.0-rc.5 → 2.0.0-rc.7
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 +67 -78
- package/dist/index.mjs +67 -78
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -6214,7 +6214,6 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
6214
6214
|
textarea {
|
|
6215
6215
|
hyphens: auto;
|
|
6216
6216
|
letter-spacing: inherit;
|
|
6217
|
-
display: block;
|
|
6218
6217
|
} /* a,button,caption,input,option,select,summary,table,textarea {font-size: 1rem;} */
|
|
6219
6218
|
summary {
|
|
6220
6219
|
hyphens: auto;
|
|
@@ -6261,7 +6260,14 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
6261
6260
|
--min-size: 2.75rem;
|
|
6262
6261
|
display: inline-block;
|
|
6263
6262
|
}
|
|
6264
|
-
button {
|
|
6263
|
+
:is(button, a) {
|
|
6264
|
+
outline: none;
|
|
6265
|
+
&::before {
|
|
6266
|
+
/* Render zero-width character as first element to set the baseline correctly. */
|
|
6267
|
+
content: '\\200B';
|
|
6268
|
+
}
|
|
6269
|
+
}
|
|
6270
|
+
:is(button, a) > kol-span-wc {
|
|
6265
6271
|
border-width: var(--border-size);
|
|
6266
6272
|
border-style: solid;
|
|
6267
6273
|
min-width: var(--min-size);
|
|
@@ -6282,64 +6288,46 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
6282
6288
|
transition-duration: 0.5s;
|
|
6283
6289
|
transition-property: background-color, color, border-color;
|
|
6284
6290
|
}
|
|
6285
|
-
button:hover:enabled {
|
|
6291
|
+
:is(button, a):hover:enabled > kol-span-wc {
|
|
6286
6292
|
text-decoration: underline;
|
|
6287
6293
|
}
|
|
6288
|
-
button:focus {
|
|
6294
|
+
:is(button, a):focus > kol-span-wc {
|
|
6289
6295
|
outline: var(--color-focus) solid 2px;
|
|
6290
6296
|
}
|
|
6291
|
-
|
|
6292
|
-
|
|
6293
|
-
|
|
6297
|
+
.primary :is(button, a) > kol-span-wc,
|
|
6298
|
+
.primary :is(button, a):active > kol-span-wc,
|
|
6299
|
+
.primary :is(button, a):hover > kol-span-wc {
|
|
6294
6300
|
background-color: var(--background-color);
|
|
6295
6301
|
border-color: var(--border-color);
|
|
6296
6302
|
color: var(--color-weiss);
|
|
6297
6303
|
}
|
|
6298
|
-
|
|
6299
|
-
|
|
6300
|
-
|
|
6301
|
-
|
|
6304
|
+
.secondary :is(button, a) > kol-span-wc,
|
|
6305
|
+
.danger :is(button, a) > kol-span-wc,
|
|
6306
|
+
.normal :is(button, a) > kol-span-wc,
|
|
6307
|
+
.ghost :is(button, a) > kol-span-wc {
|
|
6302
6308
|
background-color: var(--color-weiss);
|
|
6303
6309
|
border-color: var(--color-gruen-hell);
|
|
6304
6310
|
color: var(--color-grau-dunkel);
|
|
6305
6311
|
}
|
|
6306
|
-
|
|
6312
|
+
.ghost :is(button, a) > kol-span-wc {
|
|
6307
6313
|
background-color: transparent;
|
|
6308
6314
|
color: inherit;
|
|
6309
6315
|
border: calc(var(--border-size) * 2) solid transparent;
|
|
6310
6316
|
}
|
|
6311
|
-
|
|
6312
|
-
|
|
6317
|
+
.secondary :is(button, a):active > kol-span-wc,
|
|
6318
|
+
.secondary :is(button, a):hover > kol-span-wc {
|
|
6313
6319
|
background-color: var(--background-color);
|
|
6314
6320
|
border-color: var(--background-color);
|
|
6315
6321
|
border-width: var(--border-size);
|
|
6316
6322
|
color: var(--color-weiss);
|
|
6317
6323
|
}
|
|
6318
|
-
button:disabled,
|
|
6319
|
-
button:disabled:hover {
|
|
6324
|
+
:is(button, a):disabled > kol-span-wc,
|
|
6325
|
+
:is(button, a):disabled:hover > kol-span-wc {
|
|
6320
6326
|
background-color: var(--color-weiss);
|
|
6321
6327
|
border-color: var(--color-grau-hell);
|
|
6322
6328
|
color: var(--color-disabled);
|
|
6323
6329
|
cursor: not-allowed;
|
|
6324
6330
|
}
|
|
6325
|
-
button > span {
|
|
6326
|
-
display: flex;
|
|
6327
|
-
gap: 0.5em;
|
|
6328
|
-
margin: auto;
|
|
6329
|
-
align-items: center;
|
|
6330
|
-
justify-content: center;
|
|
6331
|
-
}
|
|
6332
|
-
button.icon-only {
|
|
6333
|
-
padding: 0.5rem;
|
|
6334
|
-
}
|
|
6335
|
-
button.icon-only kol-icon {
|
|
6336
|
-
display: inline-block;
|
|
6337
|
-
width: 1.5em;
|
|
6338
|
-
height: 1.5em;
|
|
6339
|
-
}
|
|
6340
|
-
button.loading kol-icon {
|
|
6341
|
-
animation: spin 5s infinite linear;
|
|
6342
|
-
}
|
|
6343
6331
|
`,
|
|
6344
6332
|
"KOL-INPUT-TEXT": css$5`
|
|
6345
6333
|
kol-input {
|
|
@@ -8389,21 +8377,32 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
8389
8377
|
`,
|
|
8390
8378
|
"KOL-LINK-BUTTON": css$5`
|
|
8391
8379
|
:host {
|
|
8380
|
+
--background-color: var(--color-gruen-dunkel);
|
|
8381
|
+
--border-color: var(--color-gruen-dunkel);
|
|
8382
|
+
--border-size: 1px;
|
|
8383
|
+
--min-size: 2.75rem;
|
|
8392
8384
|
display: inline-block;
|
|
8393
|
-
}
|
|
8394
|
-
a {
|
|
8395
|
-
|
|
8385
|
+
}
|
|
8386
|
+
:is(button, a) {
|
|
8387
|
+
outline: none;
|
|
8388
|
+
&::before {
|
|
8389
|
+
/* Render zero-width character as first element to set the baseline correctly. */
|
|
8390
|
+
content: '\\200B';
|
|
8391
|
+
}
|
|
8392
|
+
}
|
|
8393
|
+
:is(button, a) > kol-span-wc {
|
|
8394
|
+
border-width: var(--border-size);
|
|
8396
8395
|
border-style: solid;
|
|
8397
|
-
min-width:
|
|
8398
|
-
min-height:
|
|
8396
|
+
min-width: var(--min-size);
|
|
8397
|
+
min-height: var(--min-size);
|
|
8399
8398
|
display: grid;
|
|
8400
8399
|
gap: 0.25em;
|
|
8401
|
-
line-height: 1.
|
|
8400
|
+
line-height: 1.5;
|
|
8402
8401
|
font-family: var(--font-family);
|
|
8403
|
-
font-weight: 700;
|
|
8404
8402
|
cursor: pointer;
|
|
8403
|
+
font-size: var(--text-size);
|
|
8405
8404
|
align-items: center;
|
|
8406
|
-
padding:
|
|
8405
|
+
padding: 0.5rem 0.875rem !important;
|
|
8407
8406
|
justify-content: center;
|
|
8408
8407
|
font-style: normal;
|
|
8409
8408
|
text-align: center;
|
|
@@ -8412,56 +8411,46 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
8412
8411
|
transition-duration: 0.5s;
|
|
8413
8412
|
transition-property: background-color, color, border-color;
|
|
8414
8413
|
}
|
|
8415
|
-
a:hover:enabled {
|
|
8414
|
+
:is(button, a):hover:enabled > kol-span-wc {
|
|
8416
8415
|
text-decoration: underline;
|
|
8417
8416
|
}
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
|
|
8421
|
-
|
|
8422
|
-
|
|
8417
|
+
:is(button, a):focus > kol-span-wc {
|
|
8418
|
+
outline: var(--color-focus) solid 2px;
|
|
8419
|
+
}
|
|
8420
|
+
.primary :is(button, a) > kol-span-wc,
|
|
8421
|
+
.primary :is(button, a):active > kol-span-wc,
|
|
8422
|
+
.primary :is(button, a):hover > kol-span-wc {
|
|
8423
|
+
background-color: var(--background-color);
|
|
8424
|
+
border-color: var(--border-color);
|
|
8423
8425
|
color: var(--color-weiss);
|
|
8424
8426
|
}
|
|
8425
|
-
.secondary a,
|
|
8426
|
-
.danger a,
|
|
8427
|
-
.normal a,
|
|
8428
|
-
.ghost a {
|
|
8427
|
+
.secondary :is(button, a) > kol-span-wc,
|
|
8428
|
+
.danger :is(button, a) > kol-span-wc,
|
|
8429
|
+
.normal :is(button, a) > kol-span-wc,
|
|
8430
|
+
.ghost :is(button, a) > kol-span-wc {
|
|
8429
8431
|
background-color: var(--color-weiss);
|
|
8430
8432
|
border-color: var(--color-gruen-hell);
|
|
8431
8433
|
color: var(--color-grau-dunkel);
|
|
8432
8434
|
}
|
|
8433
|
-
.
|
|
8434
|
-
|
|
8435
|
-
|
|
8436
|
-
border
|
|
8437
|
-
|
|
8435
|
+
.ghost :is(button, a) > kol-span-wc {
|
|
8436
|
+
background-color: transparent;
|
|
8437
|
+
color: inherit;
|
|
8438
|
+
border: calc(var(--border-size) * 2) solid transparent;
|
|
8439
|
+
}
|
|
8440
|
+
.secondary :is(button, a):active > kol-span-wc,
|
|
8441
|
+
.secondary :is(button, a):hover > kol-span-wc {
|
|
8442
|
+
background-color: var(--background-color);
|
|
8443
|
+
border-color: var(--background-color);
|
|
8444
|
+
border-width: var(--border-size);
|
|
8438
8445
|
color: var(--color-weiss);
|
|
8439
8446
|
}
|
|
8440
|
-
a:disabled,
|
|
8441
|
-
a:disabled:hover {
|
|
8447
|
+
:is(button, a):disabled > kol-span-wc,
|
|
8448
|
+
:is(button, a):disabled:hover > kol-span-wc {
|
|
8442
8449
|
background-color: var(--color-weiss);
|
|
8443
8450
|
border-color: var(--color-grau-hell);
|
|
8444
|
-
color: var(--color-
|
|
8451
|
+
color: var(--color-disabled);
|
|
8445
8452
|
cursor: not-allowed;
|
|
8446
8453
|
}
|
|
8447
|
-
a > span {
|
|
8448
|
-
display: flex;
|
|
8449
|
-
gap: 0.5em;
|
|
8450
|
-
margin: auto;
|
|
8451
|
-
align-items: center;
|
|
8452
|
-
justify-content: center;
|
|
8453
|
-
}
|
|
8454
|
-
a.icon-only {
|
|
8455
|
-
padding: 8px;
|
|
8456
|
-
}
|
|
8457
|
-
a.icon-only kol-icon {
|
|
8458
|
-
display: inline-block;
|
|
8459
|
-
width: 1.5em;
|
|
8460
|
-
height: 1.5em;
|
|
8461
|
-
}
|
|
8462
|
-
a.loading kol-icon {
|
|
8463
|
-
animation: spin 5s infinite linear;
|
|
8464
|
-
}
|
|
8465
8454
|
`,
|
|
8466
8455
|
"KOL-BUTTON-LINK": css$5`
|
|
8467
8456
|
button {
|
package/dist/index.mjs
CHANGED
|
@@ -6212,7 +6212,6 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
6212
6212
|
textarea {
|
|
6213
6213
|
hyphens: auto;
|
|
6214
6214
|
letter-spacing: inherit;
|
|
6215
|
-
display: block;
|
|
6216
6215
|
} /* a,button,caption,input,option,select,summary,table,textarea {font-size: 1rem;} */
|
|
6217
6216
|
summary {
|
|
6218
6217
|
hyphens: auto;
|
|
@@ -6259,7 +6258,14 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
6259
6258
|
--min-size: 2.75rem;
|
|
6260
6259
|
display: inline-block;
|
|
6261
6260
|
}
|
|
6262
|
-
button {
|
|
6261
|
+
:is(button, a) {
|
|
6262
|
+
outline: none;
|
|
6263
|
+
&::before {
|
|
6264
|
+
/* Render zero-width character as first element to set the baseline correctly. */
|
|
6265
|
+
content: '\\200B';
|
|
6266
|
+
}
|
|
6267
|
+
}
|
|
6268
|
+
:is(button, a) > kol-span-wc {
|
|
6263
6269
|
border-width: var(--border-size);
|
|
6264
6270
|
border-style: solid;
|
|
6265
6271
|
min-width: var(--min-size);
|
|
@@ -6280,64 +6286,46 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
6280
6286
|
transition-duration: 0.5s;
|
|
6281
6287
|
transition-property: background-color, color, border-color;
|
|
6282
6288
|
}
|
|
6283
|
-
button:hover:enabled {
|
|
6289
|
+
:is(button, a):hover:enabled > kol-span-wc {
|
|
6284
6290
|
text-decoration: underline;
|
|
6285
6291
|
}
|
|
6286
|
-
button:focus {
|
|
6292
|
+
:is(button, a):focus > kol-span-wc {
|
|
6287
6293
|
outline: var(--color-focus) solid 2px;
|
|
6288
6294
|
}
|
|
6289
|
-
|
|
6290
|
-
|
|
6291
|
-
|
|
6295
|
+
.primary :is(button, a) > kol-span-wc,
|
|
6296
|
+
.primary :is(button, a):active > kol-span-wc,
|
|
6297
|
+
.primary :is(button, a):hover > kol-span-wc {
|
|
6292
6298
|
background-color: var(--background-color);
|
|
6293
6299
|
border-color: var(--border-color);
|
|
6294
6300
|
color: var(--color-weiss);
|
|
6295
6301
|
}
|
|
6296
|
-
|
|
6297
|
-
|
|
6298
|
-
|
|
6299
|
-
|
|
6302
|
+
.secondary :is(button, a) > kol-span-wc,
|
|
6303
|
+
.danger :is(button, a) > kol-span-wc,
|
|
6304
|
+
.normal :is(button, a) > kol-span-wc,
|
|
6305
|
+
.ghost :is(button, a) > kol-span-wc {
|
|
6300
6306
|
background-color: var(--color-weiss);
|
|
6301
6307
|
border-color: var(--color-gruen-hell);
|
|
6302
6308
|
color: var(--color-grau-dunkel);
|
|
6303
6309
|
}
|
|
6304
|
-
|
|
6310
|
+
.ghost :is(button, a) > kol-span-wc {
|
|
6305
6311
|
background-color: transparent;
|
|
6306
6312
|
color: inherit;
|
|
6307
6313
|
border: calc(var(--border-size) * 2) solid transparent;
|
|
6308
6314
|
}
|
|
6309
|
-
|
|
6310
|
-
|
|
6315
|
+
.secondary :is(button, a):active > kol-span-wc,
|
|
6316
|
+
.secondary :is(button, a):hover > kol-span-wc {
|
|
6311
6317
|
background-color: var(--background-color);
|
|
6312
6318
|
border-color: var(--background-color);
|
|
6313
6319
|
border-width: var(--border-size);
|
|
6314
6320
|
color: var(--color-weiss);
|
|
6315
6321
|
}
|
|
6316
|
-
button:disabled,
|
|
6317
|
-
button:disabled:hover {
|
|
6322
|
+
:is(button, a):disabled > kol-span-wc,
|
|
6323
|
+
:is(button, a):disabled:hover > kol-span-wc {
|
|
6318
6324
|
background-color: var(--color-weiss);
|
|
6319
6325
|
border-color: var(--color-grau-hell);
|
|
6320
6326
|
color: var(--color-disabled);
|
|
6321
6327
|
cursor: not-allowed;
|
|
6322
6328
|
}
|
|
6323
|
-
button > span {
|
|
6324
|
-
display: flex;
|
|
6325
|
-
gap: 0.5em;
|
|
6326
|
-
margin: auto;
|
|
6327
|
-
align-items: center;
|
|
6328
|
-
justify-content: center;
|
|
6329
|
-
}
|
|
6330
|
-
button.icon-only {
|
|
6331
|
-
padding: 0.5rem;
|
|
6332
|
-
}
|
|
6333
|
-
button.icon-only kol-icon {
|
|
6334
|
-
display: inline-block;
|
|
6335
|
-
width: 1.5em;
|
|
6336
|
-
height: 1.5em;
|
|
6337
|
-
}
|
|
6338
|
-
button.loading kol-icon {
|
|
6339
|
-
animation: spin 5s infinite linear;
|
|
6340
|
-
}
|
|
6341
6329
|
`,
|
|
6342
6330
|
"KOL-INPUT-TEXT": css$5`
|
|
6343
6331
|
kol-input {
|
|
@@ -8387,21 +8375,32 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
8387
8375
|
`,
|
|
8388
8376
|
"KOL-LINK-BUTTON": css$5`
|
|
8389
8377
|
:host {
|
|
8378
|
+
--background-color: var(--color-gruen-dunkel);
|
|
8379
|
+
--border-color: var(--color-gruen-dunkel);
|
|
8380
|
+
--border-size: 1px;
|
|
8381
|
+
--min-size: 2.75rem;
|
|
8390
8382
|
display: inline-block;
|
|
8391
|
-
}
|
|
8392
|
-
a {
|
|
8393
|
-
|
|
8383
|
+
}
|
|
8384
|
+
:is(button, a) {
|
|
8385
|
+
outline: none;
|
|
8386
|
+
&::before {
|
|
8387
|
+
/* Render zero-width character as first element to set the baseline correctly. */
|
|
8388
|
+
content: '\\200B';
|
|
8389
|
+
}
|
|
8390
|
+
}
|
|
8391
|
+
:is(button, a) > kol-span-wc {
|
|
8392
|
+
border-width: var(--border-size);
|
|
8394
8393
|
border-style: solid;
|
|
8395
|
-
min-width:
|
|
8396
|
-
min-height:
|
|
8394
|
+
min-width: var(--min-size);
|
|
8395
|
+
min-height: var(--min-size);
|
|
8397
8396
|
display: grid;
|
|
8398
8397
|
gap: 0.25em;
|
|
8399
|
-
line-height: 1.
|
|
8398
|
+
line-height: 1.5;
|
|
8400
8399
|
font-family: var(--font-family);
|
|
8401
|
-
font-weight: 700;
|
|
8402
8400
|
cursor: pointer;
|
|
8401
|
+
font-size: var(--text-size);
|
|
8403
8402
|
align-items: center;
|
|
8404
|
-
padding:
|
|
8403
|
+
padding: 0.5rem 0.875rem !important;
|
|
8405
8404
|
justify-content: center;
|
|
8406
8405
|
font-style: normal;
|
|
8407
8406
|
text-align: center;
|
|
@@ -8410,56 +8409,46 @@ const BZSt = KoliBri.createTheme("bzst", {
|
|
|
8410
8409
|
transition-duration: 0.5s;
|
|
8411
8410
|
transition-property: background-color, color, border-color;
|
|
8412
8411
|
}
|
|
8413
|
-
a:hover:enabled {
|
|
8412
|
+
:is(button, a):hover:enabled > kol-span-wc {
|
|
8414
8413
|
text-decoration: underline;
|
|
8415
8414
|
}
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
|
|
8415
|
+
:is(button, a):focus > kol-span-wc {
|
|
8416
|
+
outline: var(--color-focus) solid 2px;
|
|
8417
|
+
}
|
|
8418
|
+
.primary :is(button, a) > kol-span-wc,
|
|
8419
|
+
.primary :is(button, a):active > kol-span-wc,
|
|
8420
|
+
.primary :is(button, a):hover > kol-span-wc {
|
|
8421
|
+
background-color: var(--background-color);
|
|
8422
|
+
border-color: var(--border-color);
|
|
8421
8423
|
color: var(--color-weiss);
|
|
8422
8424
|
}
|
|
8423
|
-
.secondary a,
|
|
8424
|
-
.danger a,
|
|
8425
|
-
.normal a,
|
|
8426
|
-
.ghost a {
|
|
8425
|
+
.secondary :is(button, a) > kol-span-wc,
|
|
8426
|
+
.danger :is(button, a) > kol-span-wc,
|
|
8427
|
+
.normal :is(button, a) > kol-span-wc,
|
|
8428
|
+
.ghost :is(button, a) > kol-span-wc {
|
|
8427
8429
|
background-color: var(--color-weiss);
|
|
8428
8430
|
border-color: var(--color-gruen-hell);
|
|
8429
8431
|
color: var(--color-grau-dunkel);
|
|
8430
8432
|
}
|
|
8431
|
-
.
|
|
8432
|
-
|
|
8433
|
-
|
|
8434
|
-
border
|
|
8435
|
-
|
|
8433
|
+
.ghost :is(button, a) > kol-span-wc {
|
|
8434
|
+
background-color: transparent;
|
|
8435
|
+
color: inherit;
|
|
8436
|
+
border: calc(var(--border-size) * 2) solid transparent;
|
|
8437
|
+
}
|
|
8438
|
+
.secondary :is(button, a):active > kol-span-wc,
|
|
8439
|
+
.secondary :is(button, a):hover > kol-span-wc {
|
|
8440
|
+
background-color: var(--background-color);
|
|
8441
|
+
border-color: var(--background-color);
|
|
8442
|
+
border-width: var(--border-size);
|
|
8436
8443
|
color: var(--color-weiss);
|
|
8437
8444
|
}
|
|
8438
|
-
a:disabled,
|
|
8439
|
-
a:disabled:hover {
|
|
8445
|
+
:is(button, a):disabled > kol-span-wc,
|
|
8446
|
+
:is(button, a):disabled:hover > kol-span-wc {
|
|
8440
8447
|
background-color: var(--color-weiss);
|
|
8441
8448
|
border-color: var(--color-grau-hell);
|
|
8442
|
-
color: var(--color-
|
|
8449
|
+
color: var(--color-disabled);
|
|
8443
8450
|
cursor: not-allowed;
|
|
8444
8451
|
}
|
|
8445
|
-
a > span {
|
|
8446
|
-
display: flex;
|
|
8447
|
-
gap: 0.5em;
|
|
8448
|
-
margin: auto;
|
|
8449
|
-
align-items: center;
|
|
8450
|
-
justify-content: center;
|
|
8451
|
-
}
|
|
8452
|
-
a.icon-only {
|
|
8453
|
-
padding: 8px;
|
|
8454
|
-
}
|
|
8455
|
-
a.icon-only kol-icon {
|
|
8456
|
-
display: inline-block;
|
|
8457
|
-
width: 1.5em;
|
|
8458
|
-
height: 1.5em;
|
|
8459
|
-
}
|
|
8460
|
-
a.loading kol-icon {
|
|
8461
|
-
animation: spin 5s infinite linear;
|
|
8462
|
-
}
|
|
8463
8452
|
`,
|
|
8464
8453
|
"KOL-BUTTON-LINK": css$5`
|
|
8465
8454
|
button {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@public-ui/themes",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.7",
|
|
4
4
|
"license": "EUPL-1.2",
|
|
5
5
|
"homepage": "https://public-ui.github.io",
|
|
6
6
|
"repository": "https://github.com/public-ui/kolibri",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"wcag"
|
|
42
42
|
],
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@public-ui/schema": "2.0.0-rc.
|
|
44
|
+
"@public-ui/schema": "2.0.0-rc.7",
|
|
45
45
|
"@types/node": "ts5.1",
|
|
46
46
|
"@typescript-eslint/eslint-plugin": "6.9.0",
|
|
47
47
|
"@typescript-eslint/parser": "6.9.0",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"unbuild": "1.2.1"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@public-ui/components": "2.0.0-rc.
|
|
55
|
+
"@public-ui/components": "2.0.0-rc.7"
|
|
56
56
|
},
|
|
57
57
|
"sideEffects": false,
|
|
58
58
|
"type": "module",
|