@simplysm/angular 14.1.15 → 14.1.18
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/controls/button/sd-additional-button.js +2 -2
- package/dist/controls/button/sd-anchor.js +2 -2
- package/dist/controls/button/sd-button.js +2 -2
- package/dist/controls/button/sd-modal-select-button.js +2 -2
- package/dist/controls/checkbox/sd-checkbox.js +2 -2
- package/dist/controls/checkbox/sd-switch.js +2 -2
- package/dist/controls/collapse/sd-collapse.js +2 -1
- package/dist/controls/dropdown/sd-dropdown-popup.js +2 -2
- package/dist/controls/dropdown/sd-dropdown.js +1 -3
- package/dist/controls/form/sd-form.js +1 -3
- package/dist/controls/gap/sd-gap.js +2 -2
- package/dist/controls/input/sd-date-range-picker.js +2 -2
- package/dist/controls/input/sd-range.js +2 -2
- package/dist/controls/input/sd-textarea.js +2 -2
- package/dist/controls/input/sd-textfield.js +2 -2
- package/dist/controls/select/sd-select-item.js +2 -2
- package/dist/controls/select/sd-select.js +3 -2
- package/dist/core/busy/sd-busy-container.js +2 -2
- package/dist/core/modal/sd-modal.js +2 -2
- package/dist/core/provideSdAngular.d.ts.map +1 -1
- package/dist/core/provideSdAngular.js +0 -12
- package/dist/core/toast/sd-toast-container.js +2 -2
- package/dist/core/toast/sd-toast.js +2 -2
- package/dist/data/kanban/sd-kanban-board.js +2 -2
- package/dist/data/shared-data/sd-shared-data-select-button.js +1 -1
- package/dist/data/sheet/sd-sheet-column.js +1 -1
- package/dist/data/sheet/sd-sheet.js +2 -2
- package/dist/features/theme/sd-theme-provider.d.ts +0 -1
- package/dist/features/theme/sd-theme-provider.d.ts.map +1 -1
- package/dist/features/theme/sd-theme-provider.js +1 -6
- package/dist/features/theme/sd-theme-selector.d.ts.map +1 -1
- package/dist/features/theme/sd-theme-selector.js +42 -54
- package/dist/features/visual/sd-calendar.js +3 -3
- package/dist/features/visual/sd-label.js +2 -2
- package/dist/features/visual/sd-note.js +2 -2
- package/dist/features/visual/sd-progress.js +2 -2
- package/dist/layout/sidebar/sd-sidebar-container.js +2 -2
- package/dist/layout/sidebar/sd-sidebar.js +2 -2
- package/package.json +26 -26
- package/scss/commons/_colors.scss +247 -326
- package/scss/commons/_theme-variables.scss +2 -12
- package/scss/commons/_variables.scss +83 -56
- package/scss/themes/_variables-blueprint.scss +99 -95
- package/src/core/provideSdAngular.ts +0 -14
- package/src/features/theme/sd-theme-provider.ts +1 -7
- package/src/features/theme/sd-theme-selector.ts +77 -81
- package/src/layout/sidebar/sd-sidebar.ts +1 -1
- package/styles.css +368 -485
- package/scss/themes/_variables-dark.scss +0 -53
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
@use "sass:map";
|
|
2
|
-
@use "sass:color";
|
|
3
|
-
@use "../commons/colors";
|
|
4
|
-
|
|
5
|
-
$vars: (
|
|
6
|
-
theme: (
|
|
7
|
-
"gray": colors.variants-dark(colors.get(gray)),
|
|
8
|
-
blue-gray: colors.variants-dark(colors.get(slate)),
|
|
9
|
-
primary: colors.variants-dark(colors.get(blue)),
|
|
10
|
-
secondary: colors.variants-dark(colors.get(blue)),
|
|
11
|
-
info: colors.variants-dark(colors.get(cyan)),
|
|
12
|
-
success: colors.variants-dark(colors.get(lime)),
|
|
13
|
-
warning: colors.variants-dark(colors.get(orange)),
|
|
14
|
-
danger: colors.variants-dark(colors.get(red)),
|
|
15
|
-
),
|
|
16
|
-
trans: (
|
|
17
|
-
darkest: rgba(255, 255, 255, 0.5),
|
|
18
|
-
darker: rgba(255, 255, 255, 0.4),
|
|
19
|
-
dark: rgba(255, 255, 255, 0.3),
|
|
20
|
-
default: rgba(255, 255, 255, 0.2),
|
|
21
|
-
light: rgba(255, 255, 255, 0.1),
|
|
22
|
-
lighter: rgba(255, 255, 255, 0.03),
|
|
23
|
-
lightest: rgba(255, 255, 255, 0.05),
|
|
24
|
-
rev-default: rgba(0, 0, 0, 0.1),
|
|
25
|
-
rev-light: rgba(0, 0, 0, 0.2),
|
|
26
|
-
rev-lighter: rgba(0, 0, 0, 0.3),
|
|
27
|
-
rev-lightest: rgba(0, 0, 0, 0.4),
|
|
28
|
-
),
|
|
29
|
-
text-trans: (
|
|
30
|
-
dark: white,
|
|
31
|
-
default: rgba(255, 255, 255, 0.87),
|
|
32
|
-
light: rgba(255, 255, 255, 0.6),
|
|
33
|
-
lighter: rgba(255, 255, 255, 0.38),
|
|
34
|
-
lightest: rgba(255, 255, 255, 0.2),
|
|
35
|
-
rev-default: black,
|
|
36
|
-
rev-dark: rgba(0, 0, 0, 0.7),
|
|
37
|
-
rev-darker: rgba(0, 0, 0, 0.5),
|
|
38
|
-
),
|
|
39
|
-
border-color: (
|
|
40
|
-
lighter: var(--theme-gray-lightest),
|
|
41
|
-
light: var(--theme-gray-lighter),
|
|
42
|
-
default: var(--theme-gray-light),
|
|
43
|
-
dark: var(--theme-gray-default),
|
|
44
|
-
darker: var(--theme-gray-dark),
|
|
45
|
-
),
|
|
46
|
-
background-color: #000,
|
|
47
|
-
background-rev-color: #fff,
|
|
48
|
-
control-color: #000,
|
|
49
|
-
busy-overlay-bg: rgba(0, 0, 0, 0.6),
|
|
50
|
-
sheet: (
|
|
51
|
-
bg: var(--theme-gray-lightest),
|
|
52
|
-
),
|
|
53
|
-
);
|