@vaadin/vaadin-lumo-styles 24.4.0-dev.b3e1d14600 → 24.5.0-alpha1
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/README.md +0 -1
- package/all-imports.js +1 -1
- package/auto-complete.css +2478 -0
- package/badge-global.js +1 -1
- package/badge.js +1 -1
- package/color-global.js +1 -1
- package/color.js +4 -1
- package/font-icons.js +1 -1
- package/icons.js +1 -1
- package/mixins/field-button.js +1 -1
- package/mixins/helper.d.ts +1 -1
- package/mixins/helper.js +1 -1
- package/mixins/input-field-shared.d.ts +1 -1
- package/mixins/input-field-shared.js +1 -1
- package/mixins/loader.js +1 -1
- package/mixins/menu-overlay.js +1 -1
- package/mixins/overlay.js +1 -1
- package/mixins/required-field.js +1 -1
- package/package.json +5 -5
- package/presets/compact.js +1 -1
- package/sizing.js +1 -1
- package/spacing.js +1 -1
- package/style.js +1 -1
- package/typography-global.js +1 -1
- package/typography.js +1 -1
- package/user-colors.d.ts +1 -1
- package/user-colors.js +1 -1
- package/utilities/accessibility.js +1 -1
- package/utilities/background.js +1 -1
- package/utilities/border.js +1 -1
- package/utilities/filter.js +1 -1
- package/utilities/flexbox-grid.js +1 -1
- package/utilities/layout.js +6 -6
- package/utilities/shadows.js +1 -1
- package/utilities/sizing.js +1 -1
- package/utilities/spacing.js +1 -1
- package/utilities/transition.js +1 -1
- package/utilities/typography.js +1 -1
- package/utility-global.js +1 -1
- package/utility.js +1 -1
- package/vaadin-iconset.js +1 -1
- package/version.js +1 -1
package/badge-global.js
CHANGED
package/badge.js
CHANGED
package/color-global.js
CHANGED
package/color.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import './version.js';
|
|
@@ -211,6 +211,9 @@ const color = css`
|
|
|
211
211
|
background-color: var(--lumo-contrast-10pct);
|
|
212
212
|
border-radius: var(--lumo-border-radius-m);
|
|
213
213
|
}
|
|
214
|
+
pre code {
|
|
215
|
+
background: transparent;
|
|
216
|
+
}
|
|
214
217
|
`;
|
|
215
218
|
|
|
216
219
|
registerStyles('', color, { moduleId: 'lumo-color' });
|
package/font-icons.js
CHANGED
package/icons.js
CHANGED
package/mixins/field-button.js
CHANGED
package/mixins/helper.d.ts
CHANGED
package/mixins/helper.js
CHANGED
package/mixins/loader.js
CHANGED
package/mixins/menu-overlay.js
CHANGED
package/mixins/overlay.js
CHANGED
package/mixins/required-field.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/vaadin-lumo-styles",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.5.0-alpha1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
],
|
|
42
42
|
"dependencies": {
|
|
43
43
|
"@polymer/polymer": "^3.0.0",
|
|
44
|
-
"@vaadin/component-base": "24.
|
|
45
|
-
"@vaadin/icon": "24.
|
|
46
|
-
"@vaadin/vaadin-themable-mixin": "24.
|
|
44
|
+
"@vaadin/component-base": "24.5.0-alpha1",
|
|
45
|
+
"@vaadin/icon": "24.5.0-alpha1",
|
|
46
|
+
"@vaadin/vaadin-themable-mixin": "24.5.0-alpha1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"gulp": "^4.0.2",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"gulp-sort": "^2.0.0",
|
|
53
53
|
"gulp-svgmin": "^4.1.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "57806caac5468532a3b4e3dbdda730cd0fca193a"
|
|
56
56
|
}
|
package/presets/compact.js
CHANGED
package/sizing.js
CHANGED
package/spacing.js
CHANGED
package/style.js
CHANGED
package/typography-global.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css, unsafeCSS } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
|
package/typography.js
CHANGED
package/user-colors.d.ts
CHANGED
package/user-colors.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';
|
package/utilities/background.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';
|
package/utilities/border.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';
|
package/utilities/filter.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';
|
package/utilities/layout.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';
|
|
@@ -283,7 +283,7 @@ export const layout = css`
|
|
|
283
283
|
.sm\\:flex {
|
|
284
284
|
display: flex;
|
|
285
285
|
}
|
|
286
|
-
.sm
|
|
286
|
+
.sm\\:grid {
|
|
287
287
|
display: grid;
|
|
288
288
|
}
|
|
289
289
|
.sm\\:hidden {
|
|
@@ -327,7 +327,7 @@ export const layout = css`
|
|
|
327
327
|
.md\\:flex {
|
|
328
328
|
display: flex;
|
|
329
329
|
}
|
|
330
|
-
.md
|
|
330
|
+
.md\\:grid {
|
|
331
331
|
display: grid;
|
|
332
332
|
}
|
|
333
333
|
.md\\:hidden {
|
|
@@ -371,7 +371,7 @@ export const layout = css`
|
|
|
371
371
|
.lg\\:flex {
|
|
372
372
|
display: flex;
|
|
373
373
|
}
|
|
374
|
-
.lg
|
|
374
|
+
.lg\\:grid {
|
|
375
375
|
display: grid;
|
|
376
376
|
}
|
|
377
377
|
.lg\\:hidden {
|
|
@@ -415,7 +415,7 @@ export const layout = css`
|
|
|
415
415
|
.xl\\:flex {
|
|
416
416
|
display: flex;
|
|
417
417
|
}
|
|
418
|
-
.xl
|
|
418
|
+
.xl\\:grid {
|
|
419
419
|
display: grid;
|
|
420
420
|
}
|
|
421
421
|
.xl\\:hidden {
|
|
@@ -459,7 +459,7 @@ export const layout = css`
|
|
|
459
459
|
.\\32xl\\:flex {
|
|
460
460
|
display: flex;
|
|
461
461
|
}
|
|
462
|
-
.\\32xl
|
|
462
|
+
.\\32xl\\:grid {
|
|
463
463
|
display: grid;
|
|
464
464
|
}
|
|
465
465
|
.\\32xl\\:hidden {
|
package/utilities/shadows.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';
|
package/utilities/sizing.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';
|
package/utilities/spacing.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';
|
package/utilities/transition.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';
|
package/utilities/typography.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css } from '@vaadin/vaadin-themable-mixin/register-styles.js';
|
package/utility-global.js
CHANGED
package/utility.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { css, registerStyles } from '@vaadin/vaadin-themable-mixin/register-styles.js';
|
package/vaadin-iconset.js
CHANGED
package/version.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2017 -
|
|
3
|
+
* Copyright (c) 2017 - 2024 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { defineCustomElement } from '@vaadin/component-base/src/define.js';
|