@yesilyazilim/web.spa 1.0.53 → 1.0.55
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/index.css +48 -5
- package/index.css.map +1 -1
- package/index.js +213 -82
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +61 -20
- package/types.d.ts.map +1 -1
package/index.css
CHANGED
|
@@ -3272,9 +3272,9 @@ a, area, button, input, label, select, summary, textarea, [tabindex] {
|
|
|
3272
3272
|
--primary-900: var(--blue-900);
|
|
3273
3273
|
--primary-dark: var(--blue-500);
|
|
3274
3274
|
--active: var(--blue-400);
|
|
3275
|
-
--secondary: var(--
|
|
3276
|
-
--secondary-hover: var(--
|
|
3277
|
-
--secondary-focus: var(--
|
|
3275
|
+
--secondary: var(--slate-500);
|
|
3276
|
+
--secondary-hover: var(--slate-600);
|
|
3277
|
+
--secondary-focus: var(--slate-700);
|
|
3278
3278
|
--primary-gray: var(--zinc-500);
|
|
3279
3279
|
--primary-gray-dark: var(--zinc-700);
|
|
3280
3280
|
--primary-gray-darker: var(--zinc-800);
|
|
@@ -4722,11 +4722,17 @@ app-radio-button {
|
|
|
4722
4722
|
}
|
|
4723
4723
|
|
|
4724
4724
|
app-radio-button > button {
|
|
4725
|
+
padding: var(--spacing);
|
|
4725
4726
|
border-radius: 0;
|
|
4727
|
+
align-items: center;
|
|
4726
4728
|
}
|
|
4727
4729
|
|
|
4728
|
-
app-radio-button > button
|
|
4729
|
-
|
|
4730
|
+
app-radio-button > button > i {
|
|
4731
|
+
font-size: 1.2rem;
|
|
4732
|
+
}
|
|
4733
|
+
|
|
4734
|
+
app-radio-button > button[checked] > i {
|
|
4735
|
+
color: var(--primary) !important;
|
|
4730
4736
|
}
|
|
4731
4737
|
|
|
4732
4738
|
app-radio-button > button:first-child {
|
|
@@ -4743,6 +4749,21 @@ app-radio-button > button:last-child {
|
|
|
4743
4749
|
border-bottom-right-radius: var(--border-radius);
|
|
4744
4750
|
}
|
|
4745
4751
|
|
|
4752
|
+
app-radio-button.flat > button {
|
|
4753
|
+
color: var(--main-color);
|
|
4754
|
+
background-color: #0000;
|
|
4755
|
+
border: none;
|
|
4756
|
+
}
|
|
4757
|
+
|
|
4758
|
+
app-radio-button.flat > button:focus {
|
|
4759
|
+
box-shadow: none;
|
|
4760
|
+
}
|
|
4761
|
+
|
|
4762
|
+
app-radio-button.readonly * {
|
|
4763
|
+
cursor: default !important;
|
|
4764
|
+
pointer-events: none !important;
|
|
4765
|
+
}
|
|
4766
|
+
|
|
4746
4767
|
:root {
|
|
4747
4768
|
--tab-header-background: var(--background-color);
|
|
4748
4769
|
--tab-header-foreground: var(--color);
|
|
@@ -5673,6 +5694,10 @@ app-form app-form-line.full {
|
|
|
5673
5694
|
grid-column: 1 / -1;
|
|
5674
5695
|
}
|
|
5675
5696
|
|
|
5697
|
+
app-form app-form-line.double {
|
|
5698
|
+
grid-column-start: span 2;
|
|
5699
|
+
}
|
|
5700
|
+
|
|
5676
5701
|
app-form app-form-line > .titleContainer {
|
|
5677
5702
|
align-items: center;
|
|
5678
5703
|
gap: var(--spacing-half);
|
|
@@ -6223,6 +6248,24 @@ combo-box > app-dropdown > .ddBody > app-list > .app-list-filter-input {
|
|
|
6223
6248
|
width: calc(100% - var(--spacing) * 2);
|
|
6224
6249
|
}
|
|
6225
6250
|
|
|
6251
|
+
combo-box.readonly {
|
|
6252
|
+
cursor: default;
|
|
6253
|
+
border: none;
|
|
6254
|
+
}
|
|
6255
|
+
|
|
6256
|
+
combo-box.readonly * {
|
|
6257
|
+
pointer-events: none !important;
|
|
6258
|
+
}
|
|
6259
|
+
|
|
6260
|
+
combo-box.readonly > .iconButton, combo-box.readonly > app-dropdown {
|
|
6261
|
+
display: none;
|
|
6262
|
+
}
|
|
6263
|
+
|
|
6264
|
+
combo-box.readonly > .screen {
|
|
6265
|
+
cursor: default;
|
|
6266
|
+
border: none;
|
|
6267
|
+
}
|
|
6268
|
+
|
|
6226
6269
|
app-host {
|
|
6227
6270
|
width: 100%;
|
|
6228
6271
|
height: 100%;
|