novo-elements 6.1.1 → 6.1.4
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/bundles/novo-elements.umd.js +24 -24
- package/bundles/novo-elements.umd.js.map +1 -1
- package/bundles/novo-elements.umd.min.js +1 -1
- package/bundles/novo-elements.umd.min.js.map +1 -1
- package/elements/button/styles/button-other.scss +1 -1
- package/elements/calendar/calendar.component.scss +1 -1
- package/elements/calendar/month-view/month-view.component.scss +10 -10
- package/elements/common/option/option.component.scss +0 -1
- package/elements/common/typography/text.mixins.scss +1 -1
- package/elements/data-table/data-table.component.scss +1 -1
- package/elements/dropdown/Dropdown.scss +1 -1
- package/elements/form/ControlGroup.scss +1 -1
- package/elements/icon/Icon.scss +1 -0
- package/elements/tabbed-group-picker/TabbedGroupPicker.scss +0 -1
- package/esm2015/src/elements/button/Button.js +1 -1
- package/esm2015/src/elements/calendar/calendar.component.js +1 -1
- package/esm2015/src/elements/calendar/month-view/month-view.component.js +1 -1
- package/esm2015/src/elements/common/option/optgroup.component.js +7 -7
- package/esm2015/src/elements/common/option/option.component.js +9 -9
- package/esm2015/src/elements/common/typography/caption/caption.component.js +1 -1
- package/esm2015/src/elements/data-table/cell-headers/data-table-header-cell.component.js +4 -4
- package/esm2015/src/elements/dropdown/Dropdown.js +2 -2
- package/esm2015/src/elements/field/hint/hint.js +1 -1
- package/esm2015/src/elements/select/Select.js +2 -2
- package/esm2015/src/elements/tabbed-group-picker/TabbedGroupPicker.js +2 -2
- package/esm2015/src/elements/table/Table.js +5 -5
- package/fesm2015/novo-elements.js +29 -29
- package/fesm2015/novo-elements.js.map +1 -1
- package/novo-elements.scss +5 -5
- package/package.json +1 -1
- package/schematics/package.json +1 -1
- package/src/elements/common/option/optgroup.component.d.ts +2 -2
- package/src/elements/common/option/option.component.d.ts +1 -1
- package/styles/themes/dark.scss +2 -2
- package/styles/themes/light.scss +4 -5
- package/styles/typography.scss +0 -10
package/novo-elements.scss
CHANGED
|
@@ -98,13 +98,13 @@
|
|
|
98
98
|
background-color: var(--background-body, $color-silver);
|
|
99
99
|
}
|
|
100
100
|
.txc-main {
|
|
101
|
-
color: var(--text-main, $color-
|
|
102
|
-
}
|
|
103
|
-
.txc-bright {
|
|
104
|
-
color: var(--text-bright, $color-black);
|
|
101
|
+
color: var(--text-main, $color-charcoal);
|
|
105
102
|
}
|
|
106
103
|
.txc-muted {
|
|
107
|
-
color: var(--text-muted, $color-
|
|
104
|
+
color: var(--text-muted, $color-neutral);
|
|
105
|
+
}
|
|
106
|
+
.txc-disabled {
|
|
107
|
+
color: var(--text-disabled, $color-slate);
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
@include theme-colors() using ($name, $color, $contrast, $tint, $shade, $pale) {
|
package/package.json
CHANGED
package/schematics/package.json
CHANGED
|
@@ -8,8 +8,8 @@ export declare class NovoOptgroupBase implements CanDisable {
|
|
|
8
8
|
label: string;
|
|
9
9
|
/** Unique id for the underlying label. */
|
|
10
10
|
_labelId: string;
|
|
11
|
-
/** Whether the group is in
|
|
12
|
-
|
|
11
|
+
/** Whether the group is in novoInert a11y mode. */
|
|
12
|
+
_novoInert: boolean;
|
|
13
13
|
}
|
|
14
14
|
export declare const NovoOptgroupMixinBase: CanDisableCtor & typeof NovoOptgroupBase;
|
|
15
15
|
/**
|
|
@@ -28,7 +28,7 @@ export declare class NovoOptionBase implements FocusableOption, AfterViewChecked
|
|
|
28
28
|
private _clickPassive;
|
|
29
29
|
/** TODO: deprecate maybe, check support for table headers */
|
|
30
30
|
keepOpen: boolean;
|
|
31
|
-
|
|
31
|
+
novoInert: boolean;
|
|
32
32
|
/** If there is no parent then nothing is managing the selection. */
|
|
33
33
|
get selectable(): NovoOptionParentComponent;
|
|
34
34
|
/** Whether the wrapping component is in multiple selection mode. */
|
package/styles/themes/dark.scss
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
--selection: #{$color-ocean}; // #1c76c5;
|
|
8
8
|
--text-selection: #{$color-white};
|
|
9
9
|
--text-main: #{$color-light};
|
|
10
|
-
--text-
|
|
11
|
-
--text-
|
|
10
|
+
--text-muted: #{$color-stone};
|
|
11
|
+
--text-disabled: #a9b1ba;
|
|
12
12
|
--links: #{$color-sky-blue}; // #41adff;
|
|
13
13
|
--focus: #0096bfab;
|
|
14
14
|
--border: #{$color-onyx};
|
package/styles/themes/light.scss
CHANGED
|
@@ -6,19 +6,18 @@
|
|
|
6
6
|
--background-bright: #{$color-white}; //fff
|
|
7
7
|
--background-dark: #{$color-silver}; //e2e2e2
|
|
8
8
|
--background-muted: #{$color-sand}; //f4f4f4
|
|
9
|
+
--text-main: #{$color-charcoal}; //#363636;
|
|
10
|
+
--text-muted: #{$color-neutral}; //#70777f;
|
|
11
|
+
--text-disabled: #{$color-slate}; //#70777f;
|
|
9
12
|
--selection: #{$color-ocean}; //#9e9e9e;
|
|
10
13
|
--text-selection: #{$color-white};
|
|
11
|
-
--text-main: #{$color-dark}; //#363636;
|
|
12
|
-
--text-bright: #{$color-black};
|
|
13
|
-
--text-muted: #{$color-slate}; //#70777f;
|
|
14
|
-
// do we need disabled.
|
|
15
14
|
--links: #{$color-ocean};
|
|
16
15
|
--focus: #{$color-ocean};
|
|
17
16
|
--border: #{$color-light}; //#dbdbdb;
|
|
18
17
|
--code: #{$color-job};
|
|
19
18
|
--animation-duration: 0.1s;
|
|
20
19
|
--button-background: #{$light};
|
|
21
|
-
--button-text: #{$
|
|
20
|
+
--button-text: #{$color-charcoal};
|
|
22
21
|
--button-hover: #aaa;
|
|
23
22
|
--scrollbar-thumb: #{$color-stone};
|
|
24
23
|
--scrollbar-thumb-hover: #{$color-slate};
|