@vaadin/vaadin-lumo-styles 25.0.0-alpha6 → 25.0.0-alpha7
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/components/accordion-heading.css +14 -0
- package/components/accordion-panel.css +15 -0
- package/components/accordion.css +7 -0
- package/components/app-layout.css +11 -0
- package/components/avatar-group.css +31 -0
- package/components/avatar.css +17 -0
- package/components/button.css +12 -0
- package/components/card.css +50 -0
- package/components/charts.css +11 -0
- package/components/checkbox-group.css +23 -0
- package/components/checkbox.css +14 -0
- package/components/combo-box.css +47 -0
- package/components/confirm-dialog.css +17 -0
- package/components/context-menu.css +32 -0
- package/components/crud.css +40 -0
- package/components/custom-field.css +20 -0
- package/components/dashboard.css +34 -0
- package/components/date-picker.css +49 -0
- package/components/date-time-picker.css +28 -0
- package/components/details-summary.css +11 -0
- package/components/details.css +12 -0
- package/components/dialog.css +16 -0
- package/components/drawer-toggle.css +14 -0
- package/components/email-field.css +25 -0
- package/components/field-highlighter.css +22 -0
- package/components/form-item.css +11 -0
- package/components/form-layout.css +11 -0
- package/components/grid-filter-column.css +6 -0
- package/components/grid-filter.css +12 -0
- package/components/grid-pro-edit-column.css +48 -0
- package/components/grid-pro.css +14 -0
- package/components/grid-selection-column.css +6 -0
- package/components/grid-sort-column.css +6 -0
- package/components/grid-sorter.css +19 -0
- package/components/grid-tree-column.css +6 -0
- package/components/grid-tree-toggle.css +11 -0
- package/components/grid.css +11 -0
- package/components/horizontal-layout.css +11 -0
- package/components/icon.css +11 -0
- package/components/input-container.css +11 -0
- package/components/integer-field.css +25 -0
- package/components/item.css +11 -0
- package/components/list-box.css +11 -0
- package/components/login-form.css +14 -0
- package/components/login.css +15 -0
- package/components/map.css +11 -0
- package/components/master-detail-layout.css +11 -0
- package/components/menu-bar.css +47 -0
- package/components/message-input.css +13 -0
- package/components/message-list.css +6 -0
- package/components/message.css +12 -0
- package/components/multi-select-combo-box.css +61 -0
- package/components/notification.css +15 -0
- package/components/number-field.css +25 -0
- package/components/overlay.css +11 -0
- package/components/password-field.css +32 -0
- package/components/popover.css +14 -0
- package/components/progress-bar.css +11 -0
- package/components/radio-button.css +14 -0
- package/components/radio-group.css +23 -0
- package/components/rich-text-editor.css +26 -0
- package/components/scroller.css +11 -0
- package/components/select.css +48 -0
- package/components/side-nav-item.css +14 -0
- package/components/side-nav.css +12 -0
- package/components/split-layout.css +11 -0
- package/components/tab.css +11 -0
- package/components/tabs.css +12 -0
- package/components/tabsheet.css +19 -0
- package/components/text-area.css +25 -0
- package/components/text-field.css +23 -0
- package/components/time-picker.css +43 -0
- package/components/tooltip.css +14 -0
- package/components/upload.css +28 -0
- package/components/vertical-layout.css +11 -0
- package/components.css +71 -0
- package/global.css +14 -0
- package/lumo.css +8 -0
- package/package.json +8 -6
- package/props.css +12 -0
- package/src/components/accordion-heading.css +42 -0
- package/src/components/accordion-panel.css +38 -0
- package/src/components/app-layout.css +193 -0
- package/src/components/avatar-group-menu-item.css +22 -0
- package/src/components/avatar-group-overlay.css +15 -0
- package/src/components/avatar-group.css +67 -0
- package/src/components/avatar.css +110 -0
- package/src/components/button.css +335 -0
- package/src/components/card.css +38 -0
- package/src/components/chart.css +88 -0
- package/src/components/checkbox-group.css +18 -0
- package/src/components/checkbox.css +341 -0
- package/src/components/combo-box-item.css +18 -0
- package/src/components/combo-box-overlay.css +15 -0
- package/src/components/combo-box.css +14 -0
- package/src/components/confirm-dialog-overlay.css +59 -0
- package/src/components/context-menu-item.css +39 -0
- package/src/components/context-menu-list-box.css +40 -0
- package/src/components/context-menu-overlay.css +41 -0
- package/src/components/crud-dialog-overlay.css +57 -0
- package/src/components/crud-edit.css +30 -0
- package/src/components/crud.css +157 -0
- package/src/components/custom-field.css +102 -0
- package/src/components/dashboard-layout.css +94 -0
- package/src/components/dashboard-section.css +113 -0
- package/src/components/dashboard-widget.css +224 -0
- package/src/components/dashboard.css +23 -0
- package/src/components/date-picker-month-calendar.css +192 -0
- package/src/components/date-picker-overlay-content.css +161 -0
- package/src/components/date-picker-overlay.css +60 -0
- package/src/components/date-picker-year.css +35 -0
- package/src/components/date-picker.css +41 -0
- package/src/components/date-time-picker.css +36 -0
- package/src/components/details-summary.css +131 -0
- package/src/components/details.css +37 -0
- package/src/components/dialog-overlay.css +173 -0
- package/src/components/drawer-toggle.css +51 -0
- package/src/components/email-field.css +26 -0
- package/src/components/field-outline.css +51 -0
- package/src/components/form-item.css +36 -0
- package/src/components/form-layout.css +11 -0
- package/src/components/grid-filter.css +16 -0
- package/src/components/grid-pro-edit-select.css +19 -0
- package/src/components/grid-pro.css +84 -0
- package/src/components/grid-sorter.css +70 -0
- package/src/components/grid-tree-toggle.css +104 -0
- package/src/components/grid.css +755 -0
- package/src/components/horizontal-layout.css +38 -0
- package/src/components/icon.css +47 -0
- package/src/components/input-container.css +230 -0
- package/src/components/item.css +94 -0
- package/src/components/list-box.css +31 -0
- package/src/components/login-form-wrapper.css +128 -0
- package/src/components/login-overlay-wrapper.css +179 -0
- package/src/components/map.css +437 -0
- package/src/components/master-detail-layout.css +26 -0
- package/src/components/menu-bar-button.css +128 -0
- package/src/components/menu-bar-item.css +24 -0
- package/src/components/menu-bar-overlay.css +10 -0
- package/src/components/menu-bar.css +31 -0
- package/src/components/message-input.css +30 -0
- package/src/components/message.css +82 -0
- package/src/components/multi-select-combo-box-chip.css +113 -0
- package/src/components/multi-select-combo-box-container.css +20 -0
- package/src/components/multi-select-combo-box-item.css +13 -0
- package/src/components/multi-select-combo-box-overlay.css +18 -0
- package/src/components/multi-select-combo-box.css +98 -0
- package/src/components/notification-card.css +228 -0
- package/src/components/notification-container.css +53 -0
- package/src/components/number-field.css +53 -0
- package/src/components/password-field-button.css +19 -0
- package/src/components/password-field.css +24 -0
- package/src/components/popover-overlay.css +162 -0
- package/src/components/progress-bar.css +295 -0
- package/src/components/radio-button.css +156 -0
- package/src/components/radio-group.css +18 -0
- package/src/components/rich-text-editor-popup-overlay.css +27 -0
- package/src/components/rich-text-editor.css +485 -0
- package/src/components/scroller.css +40 -0
- package/src/components/select-overlay.css +54 -0
- package/src/components/select-value-button.css +57 -0
- package/src/components/select.css +56 -0
- package/src/components/side-nav-item.css +170 -0
- package/src/components/side-nav.css +102 -0
- package/src/components/split-layout.css +132 -0
- package/src/components/tab.css +246 -0
- package/src/components/tabs.css +285 -0
- package/src/components/tabsheet.css +59 -0
- package/src/components/text-area.css +116 -0
- package/src/components/time-picker-overlay.css +15 -0
- package/src/components/time-picker.css +36 -0
- package/src/components/tooltip-overlay.css +53 -0
- package/src/components/upload-file-list.css +24 -0
- package/src/components/upload-file.css +133 -0
- package/src/components/upload-icon.css +14 -0
- package/src/components/upload.css +56 -0
- package/src/components/user-tag.css +48 -0
- package/src/components/user-tags-overlay.css +67 -0
- package/src/components/vertical-layout.css +38 -0
- package/src/global/badge.css +167 -0
- package/src/global/dark.css +93 -0
- package/src/global/style.css +93 -0
- package/src/global/typography.css +113 -0
- package/src/mixins/checkable-field.css +67 -0
- package/src/mixins/combo-box-loader.css +14 -0
- package/src/mixins/combo-box-overlay.css +30 -0
- package/src/mixins/dashboard-item.css +253 -0
- package/src/mixins/field-base.css +187 -0
- package/src/mixins/field-button.css +46 -0
- package/src/mixins/field-error-message.css +36 -0
- package/src/mixins/field-helper.css +62 -0
- package/src/mixins/field-label.css +62 -0
- package/src/mixins/field-required.css +26 -0
- package/src/mixins/grid-pro-editor.css +35 -0
- package/src/mixins/group-field.css +58 -0
- package/src/mixins/loader.css +48 -0
- package/src/mixins/menu-overlay-core.css +36 -0
- package/src/mixins/menu-overlay-ext.css +63 -0
- package/src/mixins/overlay.css +113 -0
- package/src/mixins/resizable-overlay.css +99 -0
- package/src/props/color.css +98 -0
- package/src/props/icons.css +61 -0
- package/src/props/reset.css +11 -0
- package/src/props/sizing.css +19 -0
- package/src/props/spacing.css +27 -0
- package/src/props/style.css +21 -0
- package/src/props/typography.css +24 -0
- package/src/utilities/accessibility.css +17 -0
- package/src/utilities/background.css +189 -0
- package/src/utilities/border.css +173 -0
- package/src/utilities/filter.css +37 -0
- package/src/utilities/flexbox-grid.css +781 -0
- package/src/utilities/layout.css +629 -0
- package/src/utilities/shadows.css +29 -0
- package/src/utilities/sizing.css +142 -0
- package/src/utilities/spacing.css +682 -0
- package/src/utilities/transition.css +46 -0
- package/src/utilities/typography.css +424 -0
- package/utility.css +17 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2000 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/mixins/field-base.css';
|
|
7
|
+
@import '../src/mixins/field-button.css';
|
|
8
|
+
@import '../src/mixins/field-error-message.css';
|
|
9
|
+
@import '../src/mixins/field-helper.css';
|
|
10
|
+
@import '../src/mixins/field-label.css';
|
|
11
|
+
@import '../src/mixins/field-required.css';
|
|
12
|
+
@import '../src/mixins/menu-overlay-core.css';
|
|
13
|
+
@import '../src/mixins/menu-overlay-ext.css';
|
|
14
|
+
@import '../src/mixins/overlay.css';
|
|
15
|
+
@import '../src/components/item.css';
|
|
16
|
+
@import '../src/components/list-box.css';
|
|
17
|
+
@import '../src/components/select-overlay.css';
|
|
18
|
+
@import '../src/components/select-value-button.css';
|
|
19
|
+
@import '../src/components/select.css';
|
|
20
|
+
@import './input-container.css';
|
|
21
|
+
|
|
22
|
+
:is(:root, :host)::before {
|
|
23
|
+
--vaadin-select-lumo-inject: 1;
|
|
24
|
+
--vaadin-select-lumo-inject-modules:
|
|
25
|
+
lumo_mixins_field-label,
|
|
26
|
+
lumo_mixins_field-required,
|
|
27
|
+
lumo_mixins_field-error-message,
|
|
28
|
+
lumo_mixins_field-button,
|
|
29
|
+
lumo_mixins_field-helper,
|
|
30
|
+
lumo_mixins_field-base,
|
|
31
|
+
lumo_components_select;
|
|
32
|
+
|
|
33
|
+
--vaadin-select-item-lumo-inject: 1;
|
|
34
|
+
--vaadin-select-item-lumo-inject-modules: lumo_components_item;
|
|
35
|
+
|
|
36
|
+
--vaadin-select-overlay-lumo-inject: 1;
|
|
37
|
+
--vaadin-select-overlay-lumo-inject-modules:
|
|
38
|
+
lumo_mixins_overlay,
|
|
39
|
+
lumo_mixins_menu-overlay-core,
|
|
40
|
+
lumo_mixins_menu-overlay-ext,
|
|
41
|
+
lumo_components_select-overlay;
|
|
42
|
+
|
|
43
|
+
--vaadin-select-list-box-lumo-inject: 1;
|
|
44
|
+
--vaadin-select-list-box-lumo-inject-modules: lumo_components_list-box;
|
|
45
|
+
|
|
46
|
+
--vaadin-select-value-button-lumo-inject: 1;
|
|
47
|
+
--vaadin-select-value-button-lumo-inject-modules: lumo_components_select-value-button;
|
|
48
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2000 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/mixins/field-button.css';
|
|
7
|
+
@import '../src/components/side-nav-item.css';
|
|
8
|
+
|
|
9
|
+
:is(:root, :host)::before {
|
|
10
|
+
--vaadin-side-nav-item-lumo-inject: 1;
|
|
11
|
+
--vaadin-side-nav-item-lumo-inject-modules:
|
|
12
|
+
lumo_mixins_field-button,
|
|
13
|
+
lumo_components_side-nav-item;
|
|
14
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2000 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/components/side-nav.css';
|
|
7
|
+
@import './side-nav-item.css';
|
|
8
|
+
|
|
9
|
+
:is(:root, :host)::before {
|
|
10
|
+
--vaadin-side-nav-lumo-inject: 1;
|
|
11
|
+
--vaadin-side-nav-lumo-inject-modules: lumo_components_side-nav;
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2017 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/components/split-layout.css';
|
|
7
|
+
|
|
8
|
+
:is(:root, :host)::before {
|
|
9
|
+
--vaadin-split-layout-lumo-inject: 1;
|
|
10
|
+
--vaadin-split-layout-lumo-inject-modules: lumo_components_split-layout;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2000 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/components/tab.css';
|
|
7
|
+
|
|
8
|
+
:is(:root, :host)::before {
|
|
9
|
+
--vaadin-tab-lumo-inject: 1;
|
|
10
|
+
--vaadin-tab-lumo-inject-modules: lumo_components_tab;
|
|
11
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2000 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/components/tabs.css';
|
|
7
|
+
@import './tab.css';
|
|
8
|
+
|
|
9
|
+
:is(:root, :host)::before {
|
|
10
|
+
--vaadin-tabs-lumo-inject: 1;
|
|
11
|
+
--vaadin-tabs-lumo-inject-modules: lumo_components_tabs;
|
|
12
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2000 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/mixins/loader.css';
|
|
7
|
+
@import '../src/components/tabsheet.css';
|
|
8
|
+
@import './scroller.css';
|
|
9
|
+
@import './tabs.css';
|
|
10
|
+
|
|
11
|
+
:is(:root, :host)::before {
|
|
12
|
+
--vaadin-tabsheet-lumo-inject: 1;
|
|
13
|
+
--vaadin-tabsheet-lumo-inject-modules:
|
|
14
|
+
lumo_mixins_loader,
|
|
15
|
+
lumo_components_tabsheet;
|
|
16
|
+
|
|
17
|
+
--vaadin-tabsheet-scroller-lumo-inject: 1;
|
|
18
|
+
--vaadin-tabsheet-scroller-lumo-inject-modules: lumo_components_scroller;
|
|
19
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2017 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/mixins/field-base.css';
|
|
7
|
+
@import '../src/mixins/field-button.css';
|
|
8
|
+
@import '../src/mixins/field-error-message.css';
|
|
9
|
+
@import '../src/mixins/field-helper.css';
|
|
10
|
+
@import '../src/mixins/field-label.css';
|
|
11
|
+
@import '../src/mixins/field-required.css';
|
|
12
|
+
@import '../src/components/text-area.css';
|
|
13
|
+
@import './input-container.css';
|
|
14
|
+
|
|
15
|
+
:is(:root, :host)::before {
|
|
16
|
+
--vaadin-text-area-lumo-inject: 1;
|
|
17
|
+
--vaadin-text-area-lumo-inject-modules:
|
|
18
|
+
lumo_mixins_field-label,
|
|
19
|
+
lumo_mixins_field-required,
|
|
20
|
+
lumo_mixins_field-error-message,
|
|
21
|
+
lumo_mixins_field-button,
|
|
22
|
+
lumo_mixins_field-helper,
|
|
23
|
+
lumo_mixins_field-base,
|
|
24
|
+
lumo_components_text-area;
|
|
25
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2017 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/mixins/field-base.css';
|
|
7
|
+
@import '../src/mixins/field-button.css';
|
|
8
|
+
@import '../src/mixins/field-error-message.css';
|
|
9
|
+
@import '../src/mixins/field-helper.css';
|
|
10
|
+
@import '../src/mixins/field-label.css';
|
|
11
|
+
@import '../src/mixins/field-required.css';
|
|
12
|
+
@import './input-container.css';
|
|
13
|
+
|
|
14
|
+
:is(:root, :host)::before {
|
|
15
|
+
--vaadin-text-field-lumo-inject: 1;
|
|
16
|
+
--vaadin-text-field-lumo-inject-modules:
|
|
17
|
+
lumo_mixins_field-label,
|
|
18
|
+
lumo_mixins_field-required,
|
|
19
|
+
lumo_mixins_field-error-message,
|
|
20
|
+
lumo_mixins_field-button,
|
|
21
|
+
lumo_mixins_field-helper,
|
|
22
|
+
lumo_mixins_field-base;
|
|
23
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2017 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/mixins/combo-box-overlay.css';
|
|
7
|
+
@import '../src/mixins/field-base.css';
|
|
8
|
+
@import '../src/mixins/field-button.css';
|
|
9
|
+
@import '../src/mixins/field-error-message.css';
|
|
10
|
+
@import '../src/mixins/field-helper.css';
|
|
11
|
+
@import '../src/mixins/field-label.css';
|
|
12
|
+
@import '../src/mixins/field-required.css';
|
|
13
|
+
@import '../src/mixins/menu-overlay-core.css';
|
|
14
|
+
@import '../src/mixins/overlay.css';
|
|
15
|
+
@import '../src/components/combo-box-item.css';
|
|
16
|
+
@import '../src/components/item.css';
|
|
17
|
+
@import '../src/components/time-picker-overlay.css';
|
|
18
|
+
@import '../src/components/time-picker.css';
|
|
19
|
+
@import './input-container.css';
|
|
20
|
+
|
|
21
|
+
:is(:root, :host)::before {
|
|
22
|
+
--vaadin-time-picker-lumo-inject: 1;
|
|
23
|
+
--vaadin-time-picker-lumo-inject-modules:
|
|
24
|
+
lumo_mixins_field-label,
|
|
25
|
+
lumo_mixins_field-required,
|
|
26
|
+
lumo_mixins_field-error-message,
|
|
27
|
+
lumo_mixins_field-button,
|
|
28
|
+
lumo_mixins_field-helper,
|
|
29
|
+
lumo_mixins_field-base,
|
|
30
|
+
lumo_components_time-picker;
|
|
31
|
+
|
|
32
|
+
--vaadin-time-picker-item-lumo-inject: 1;
|
|
33
|
+
--vaadin-time-picker-item-lumo-inject-modules:
|
|
34
|
+
lumo_components_item,
|
|
35
|
+
lumo_components_combo-box-item;
|
|
36
|
+
|
|
37
|
+
--vaadin-time-picker-overlay-lumo-inject: 1;
|
|
38
|
+
--vaadin-time-picker-overlay-lumo-inject-modules:
|
|
39
|
+
lumo_mixins_overlay,
|
|
40
|
+
lumo_mixins_menu-overlay-core,
|
|
41
|
+
lumo_mixins_combo-box-overlay,
|
|
42
|
+
lumo_components_time-picker-overlay;
|
|
43
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2017 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/mixins/overlay.css';
|
|
7
|
+
@import '../src/components/tooltip-overlay.css';
|
|
8
|
+
|
|
9
|
+
:is(:root, :host)::before {
|
|
10
|
+
--vaadin-tooltip-overlay-lumo-inject: 1;
|
|
11
|
+
--vaadin-tooltip-overlay-lumo-inject-modules:
|
|
12
|
+
lumo_mixins_overlay,
|
|
13
|
+
lumo_components_tooltip-overlay;
|
|
14
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2000 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/mixins/field-button.css';
|
|
7
|
+
@import '../src/components/upload-file-list.css';
|
|
8
|
+
@import '../src/components/upload-file.css';
|
|
9
|
+
@import '../src/components/upload-icon.css';
|
|
10
|
+
@import '../src/components/upload.css';
|
|
11
|
+
@import './button.css';
|
|
12
|
+
@import './progress-bar.css';
|
|
13
|
+
|
|
14
|
+
:is(:root, :host)::before {
|
|
15
|
+
--vaadin-upload-lumo-inject: 1;
|
|
16
|
+
--vaadin-upload-lumo-inject-modules: lumo_components_upload;
|
|
17
|
+
|
|
18
|
+
--vaadin-upload-icon-lumo-inject: 1;
|
|
19
|
+
--vaadin-upload-icon-lumo-inject-modules: lumo_components_upload-icon;
|
|
20
|
+
|
|
21
|
+
--vaadin-upload-file-lumo-inject: 1;
|
|
22
|
+
--vaadin-upload-file-lumo-inject-modules:
|
|
23
|
+
lumo_mixins_field-button,
|
|
24
|
+
lumo_components_upload-file;
|
|
25
|
+
|
|
26
|
+
--vaadin-upload-file-list-lumo-inject: 1;
|
|
27
|
+
--vaadin-upload-file-list-lumo-inject-modules: lumo_components_upload-file-list;
|
|
28
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2017 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import '../src/components/vertical-layout.css';
|
|
7
|
+
|
|
8
|
+
:is(:root, :host)::before {
|
|
9
|
+
--vaadin-vertical-layout-lumo-inject: 1;
|
|
10
|
+
--vaadin-vertical-layout-lumo-inject-modules: lumo_components_vertical-layout;
|
|
11
|
+
}
|
package/components.css
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2000 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import './components/accordion.css';
|
|
7
|
+
@import './components/app-layout.css';
|
|
8
|
+
@import './components/avatar-group.css';
|
|
9
|
+
@import './components/avatar.css';
|
|
10
|
+
@import './components/button.css';
|
|
11
|
+
@import './components/card.css';
|
|
12
|
+
@import './components/charts.css';
|
|
13
|
+
@import './components/checkbox-group.css';
|
|
14
|
+
@import './components/checkbox.css';
|
|
15
|
+
@import './components/combo-box.css';
|
|
16
|
+
@import './components/confirm-dialog.css';
|
|
17
|
+
@import './components/context-menu.css';
|
|
18
|
+
@import './components/crud.css';
|
|
19
|
+
@import './components/custom-field.css';
|
|
20
|
+
@import './components/dashboard.css';
|
|
21
|
+
@import './components/date-picker.css';
|
|
22
|
+
@import './components/date-time-picker.css';
|
|
23
|
+
@import './components/details-summary.css';
|
|
24
|
+
@import './components/details.css';
|
|
25
|
+
@import './components/dialog.css';
|
|
26
|
+
@import './components/drawer-toggle.css';
|
|
27
|
+
@import './components/email-field.css';
|
|
28
|
+
@import './components/field-highlighter.css';
|
|
29
|
+
@import './components/form-item.css';
|
|
30
|
+
@import './components/form-layout.css';
|
|
31
|
+
@import './components/grid-filter-column.css';
|
|
32
|
+
@import './components/grid-pro-edit-column.css';
|
|
33
|
+
@import './components/grid-pro.css';
|
|
34
|
+
@import './components/grid-selection-column.css';
|
|
35
|
+
@import './components/grid-sort-column.css';
|
|
36
|
+
@import './components/grid-tree-column.css';
|
|
37
|
+
@import './components/grid.css';
|
|
38
|
+
@import './components/horizontal-layout.css';
|
|
39
|
+
@import './components/icon.css';
|
|
40
|
+
@import './components/input-container.css';
|
|
41
|
+
@import './components/integer-field.css';
|
|
42
|
+
@import './components/item.css';
|
|
43
|
+
@import './components/list-box.css';
|
|
44
|
+
@import './components/login.css';
|
|
45
|
+
@import './components/map.css';
|
|
46
|
+
@import './components/master-detail-layout.css';
|
|
47
|
+
@import './components/menu-bar.css';
|
|
48
|
+
@import './components/message-input.css';
|
|
49
|
+
@import './components/message-list.css';
|
|
50
|
+
@import './components/multi-select-combo-box.css';
|
|
51
|
+
@import './components/notification.css';
|
|
52
|
+
@import './components/number-field.css';
|
|
53
|
+
@import './components/overlay.css';
|
|
54
|
+
@import './components/password-field.css';
|
|
55
|
+
@import './components/popover.css';
|
|
56
|
+
@import './components/progress-bar.css';
|
|
57
|
+
@import './components/radio-button.css';
|
|
58
|
+
@import './components/radio-group.css';
|
|
59
|
+
@import './components/rich-text-editor.css';
|
|
60
|
+
@import './components/scroller.css';
|
|
61
|
+
@import './components/select.css';
|
|
62
|
+
@import './components/side-nav.css';
|
|
63
|
+
@import './components/split-layout.css';
|
|
64
|
+
@import './components/tabs.css';
|
|
65
|
+
@import './components/tabsheet.css';
|
|
66
|
+
@import './components/text-area.css';
|
|
67
|
+
@import './components/text-field.css';
|
|
68
|
+
@import './components/time-picker.css';
|
|
69
|
+
@import './components/tooltip.css';
|
|
70
|
+
@import './components/upload.css';
|
|
71
|
+
@import './components/vertical-layout.css';
|
package/global.css
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2017 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import './src/global/badge.css';
|
|
7
|
+
@import './src/global/dark.css';
|
|
8
|
+
@import './src/global/typography.css';
|
|
9
|
+
|
|
10
|
+
:where(:root, :host) {
|
|
11
|
+
color: var(--lumo-body-text-color);
|
|
12
|
+
background-color: var(--lumo-base-color);
|
|
13
|
+
color-scheme: light;
|
|
14
|
+
}
|
package/lumo.css
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/vaadin-lumo-styles",
|
|
3
|
-
"version": "25.0.0-
|
|
3
|
+
"version": "25.0.0-alpha7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -23,13 +23,15 @@
|
|
|
23
23
|
"icons": "gulp icons"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
|
+
"*.css",
|
|
26
27
|
"*.d.ts",
|
|
27
28
|
"*.js",
|
|
28
29
|
"!gulpfile.js",
|
|
29
|
-
"
|
|
30
|
+
"components/*.css",
|
|
30
31
|
"mixins/*.d.ts",
|
|
31
32
|
"mixins/*.js",
|
|
32
33
|
"presets/*.js",
|
|
34
|
+
"src",
|
|
33
35
|
"utilities/*.js"
|
|
34
36
|
],
|
|
35
37
|
"keywords": [
|
|
@@ -40,9 +42,9 @@
|
|
|
40
42
|
"web-component"
|
|
41
43
|
],
|
|
42
44
|
"dependencies": {
|
|
43
|
-
"@vaadin/component-base": "25.0.0-
|
|
44
|
-
"@vaadin/icon": "25.0.0-
|
|
45
|
-
"@vaadin/vaadin-themable-mixin": "25.0.0-
|
|
45
|
+
"@vaadin/component-base": "25.0.0-alpha7",
|
|
46
|
+
"@vaadin/icon": "25.0.0-alpha7",
|
|
47
|
+
"@vaadin/vaadin-themable-mixin": "25.0.0-alpha7"
|
|
46
48
|
},
|
|
47
49
|
"devDependencies": {
|
|
48
50
|
"gulp": "^5.0.1",
|
|
@@ -52,5 +54,5 @@
|
|
|
52
54
|
"imagemin": "^9.0.0",
|
|
53
55
|
"imagemin-svgo": "^10.0.1"
|
|
54
56
|
},
|
|
55
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "87f72707ce6866892f8be5782fa0da008e87dcbc"
|
|
56
58
|
}
|
package/props.css
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2017 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@import './src/props/reset.css';
|
|
7
|
+
@import './src/props/icons.css';
|
|
8
|
+
@import './src/props/style.css';
|
|
9
|
+
@import './src/props/color.css';
|
|
10
|
+
@import './src/props/sizing.css';
|
|
11
|
+
@import './src/props/spacing.css';
|
|
12
|
+
@import './src/props/typography.css';
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2017 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@media lumo_components_accordion-heading {
|
|
7
|
+
:host {
|
|
8
|
+
display: block;
|
|
9
|
+
outline: none;
|
|
10
|
+
-webkit-user-select: none;
|
|
11
|
+
user-select: none;
|
|
12
|
+
padding: 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
:host([hidden]) {
|
|
16
|
+
display: none !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
button {
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: center;
|
|
22
|
+
justify-content: inherit;
|
|
23
|
+
width: 100%;
|
|
24
|
+
margin: 0;
|
|
25
|
+
padding: 0;
|
|
26
|
+
background-color: initial;
|
|
27
|
+
color: inherit;
|
|
28
|
+
border: initial;
|
|
29
|
+
outline: none;
|
|
30
|
+
font: inherit;
|
|
31
|
+
text-align: inherit;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
[part='content'] {
|
|
35
|
+
padding: var(--lumo-space-s) 0;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
:host([theme~='filled']) {
|
|
39
|
+
padding-top: 0;
|
|
40
|
+
padding-bottom: 0;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license
|
|
3
|
+
* Copyright (c) 2017 - 2025 Vaadin Ltd.
|
|
4
|
+
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
|
+
*/
|
|
6
|
+
@media lumo_components_accordion-panel {
|
|
7
|
+
:host {
|
|
8
|
+
display: block;
|
|
9
|
+
margin: 0;
|
|
10
|
+
border-bottom: solid 1px var(--lumo-contrast-10pct);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
:host([hidden]) {
|
|
14
|
+
display: none !important;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
[part='content'] {
|
|
18
|
+
display: none;
|
|
19
|
+
overflow: hidden;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
:host([opened]) [part='content'] {
|
|
23
|
+
display: block;
|
|
24
|
+
overflow: visible;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
:host(:last-child) {
|
|
28
|
+
border-bottom: none;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
:host([theme~='filled']) {
|
|
32
|
+
border-bottom: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
:host([theme~='filled']:not(:last-child)) {
|
|
36
|
+
margin-bottom: 2px;
|
|
37
|
+
}
|
|
38
|
+
}
|