@elderbyte/ngx-starter 19.1.26 → 19.2.0
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/fesm2022/elderbyte-ngx-starter.mjs +2238 -1875
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/common/selection/selection-model.d.ts +3 -0
- package/lib/components/data-view/base/elder-data-view-base.d.ts +22 -42
- package/lib/components/data-view/base/elder-data-view.d.ts +7 -3
- package/lib/components/data-view/common/activation/data-view-activation-controller.service.d.ts +69 -0
- package/lib/components/data-view/common/activation/elder-activation-options.d.ts +16 -0
- package/lib/components/data-view/common/activation/model/activation-model.d.ts +49 -0
- package/lib/components/data-view/common/activation/public_api.d.ts +6 -0
- package/lib/components/data-view/common/elder-data-common.module.d.ts +0 -9
- package/lib/components/data-view/common/public_api.d.ts +11 -0
- package/lib/components/data-view/common/selection/data-context-selection.directive.d.ts +2 -2
- package/lib/components/data-view/common/selection/elder-selection-master-checkbox/elder-selection-master-checkbox.component.d.ts +5 -9
- package/lib/components/data-view/grid/activation/elder-grid-activation.directive.d.ts +46 -0
- package/lib/components/data-view/grid/elder-grid/elder-grid.component.d.ts +9 -11
- package/lib/components/data-view/grid/elder-grid.module.d.ts +20 -17
- package/lib/components/data-view/grid/elder-tile/elder-tile.component.d.ts +53 -0
- package/lib/components/data-view/master-detail/elder-master-detail.service.d.ts +1 -1
- package/lib/components/data-view/master-detail/master-detail-activation-event.d.ts +1 -1
- package/lib/components/data-view/public_api.d.ts +1 -1
- package/lib/components/data-view/table/activation/elder-delete-active.directive.d.ts +9 -11
- package/lib/components/data-view/table/activation/elder-table-activation.directive.d.ts +13 -50
- package/lib/components/data-view/table/activation/public_api.d.ts +0 -5
- package/lib/components/data-view/table/elder-table/elder-table.component.d.ts +16 -15
- package/lib/components/data-view/table/elder-table-row.directive.d.ts +10 -8
- package/lib/components/i18n/entities/elder-localized-input-table/elder-localized-input-table.component.d.ts +6 -0
- package/lib/components/select-chip-list/chip-list-select/elder-chip-list-select.component.d.ts +18 -10
- package/package.json +1 -1
- package/src/lib/components/data-view/grid/elder-grid/elder-grid.component.scss +9 -80
- package/src/lib/components/data-view/grid/elder-tile/elder-tile.component.scss +110 -0
- package/theming/abstracts/_elder-design-tokens.scss +13 -1
- package/lib/components/data-view/table/activation/elder-activation-context.d.ts +0 -7
- package/lib/components/data-view/table/activation/elder-table-activation-options.d.ts +0 -16
- /package/lib/components/data-view/{table/activation → common/activation/model}/activation-event-source.d.ts +0 -0
- /package/lib/components/data-view/{table/activation → common/activation/model}/item-activation-event.d.ts +0 -0
- /package/lib/components/data-view/{table/activation → common/activation/model}/item-activation-options.d.ts +0 -0
|
@@ -122,11 +122,16 @@
|
|
|
122
122
|
--elder-blue: var(--md-sys-color-primary);
|
|
123
123
|
--md-sys-color-tertiary: var(--elder-gold);
|
|
124
124
|
|
|
125
|
-
--elder-color-highlight-strong: hsl(214, 18%, 85%);
|
|
126
125
|
--elder-color-highlight-strong: var(--elder-gold-light);
|
|
127
126
|
--elder-color-highlight-light: #ebebeb;
|
|
128
127
|
--elder-color-highlight-variant: var(--md-sys-color-secondary-fixed);
|
|
129
128
|
|
|
129
|
+
--elder-color-highlight-focus: color-mix(
|
|
130
|
+
in sRGB,
|
|
131
|
+
var(--elder-color-highlight-strong) 80%,
|
|
132
|
+
black
|
|
133
|
+
);
|
|
134
|
+
|
|
130
135
|
// missing md3 color
|
|
131
136
|
--md-sys-color-on-primary-fixed-dim: var(--md-sys-color-on-primary-fixed);
|
|
132
137
|
--md-sys-color-on-tertiary-fixed-dim: var(--md-sys-color-on-tertiary-container);
|
|
@@ -207,6 +212,13 @@
|
|
|
207
212
|
--elder-color-highlight-light: var(--elder-gray-medium);
|
|
208
213
|
--elder-color-highlight-strong: var(--elder-gold-semi-dark);
|
|
209
214
|
--elder-color-highlight-variant: var(--elder-gold-dark);
|
|
215
|
+
|
|
216
|
+
--elder-color-highlight-focus: color-mix(
|
|
217
|
+
in sRGB,
|
|
218
|
+
var(--elder-color-highlight-strong) 70%,
|
|
219
|
+
white
|
|
220
|
+
);
|
|
221
|
+
|
|
210
222
|
--md-sys-color-tertiary-container: var(--elder-gold-semi-dark);
|
|
211
223
|
--md-sys-color-surface-container-highest: #181818;
|
|
212
224
|
--md-sys-color-surface-container: #1e1f20;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
2
|
-
import { ItemActivationEvent } from './item-activation-event';
|
|
3
|
-
import { ItemActivationOptions } from './item-activation-options';
|
|
4
|
-
export interface ElderActivationContext<T> {
|
|
5
|
-
activate(item: T, options: ItemActivationOptions): void;
|
|
6
|
-
get activeItemEventChange(): Observable<ItemActivationEvent<T>>;
|
|
7
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export type ElderTableActivationMode = 'once' | 'always';
|
|
2
|
-
export type ElderTableActivationRow = 'none' | 'first' | 'last';
|
|
3
|
-
export interface ElderTableActivationOptions {
|
|
4
|
-
/**
|
|
5
|
-
* After reaching the last element, start over at the first?
|
|
6
|
-
*/
|
|
7
|
-
loop?: boolean;
|
|
8
|
-
/**
|
|
9
|
-
* Attempt to activate a row when the rows change.
|
|
10
|
-
*/
|
|
11
|
-
mode?: ElderTableActivationMode;
|
|
12
|
-
/**
|
|
13
|
-
* Activate the specified row, if no other row is currently activated.
|
|
14
|
-
*/
|
|
15
|
-
row?: ElderTableActivationRow;
|
|
16
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|