@amsterdam/design-system-css 2.2.0 → 3.1.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/CHANGELOG.md +38 -0
- package/README.md +3 -3
- package/dist/badge/badge.css +1 -1
- package/dist/badge/badge.css.map +1 -1
- package/dist/date-input/date-input.css +1 -1
- package/dist/date-input/date-input.css.map +1 -1
- package/dist/error-message/error-message.css +1 -1
- package/dist/error-message/error-message.css.map +1 -1
- package/dist/field/field.css +1 -1
- package/dist/field/field.css.map +1 -1
- package/dist/field-set/field-set.css +1 -1
- package/dist/field-set/field-set.css.map +1 -1
- package/dist/file-input/file-input.css +1 -1
- package/dist/file-input/file-input.css.map +1 -1
- package/dist/image-slider/image-slider.css +1 -1
- package/dist/image-slider/image-slider.css.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/label/label.css +1 -1
- package/dist/label/label.css.map +1 -1
- package/dist/page-header/page-header.css +1 -1
- package/dist/page-header/page-header.css.map +1 -1
- package/dist/paragraph/paragraph.css +1 -1
- package/dist/paragraph/paragraph.css.map +1 -1
- package/dist/progress-list/progress-list.css +1 -0
- package/dist/progress-list/progress-list.css.map +1 -0
- package/dist/time-input/time-input.css +1 -1
- package/dist/time-input/time-input.css.map +1 -1
- package/package.json +4 -4
- package/src/components/alert/README.md +1 -1
- package/src/components/avatar/README.md +1 -1
- package/src/components/badge/badge.scss +2 -1
- package/src/components/date-input/date-input.scss +0 -5
- package/src/components/error-message/error-message.scss +1 -1
- package/src/components/field/README.md +1 -0
- package/src/components/field/field.scss +12 -3
- package/src/components/field-set/README.md +1 -0
- package/src/components/field-set/field-set.scss +25 -1
- package/src/components/file-input/file-input.scss +0 -6
- package/src/components/gap/README.md +1 -1
- package/src/components/grid/README.md +1 -0
- package/src/components/icon/README.md +1 -1
- package/src/components/image-slider/image-slider.scss +0 -10
- package/src/components/index.scss +1 -0
- package/src/components/label/label.scss +1 -0
- package/src/components/link/README.md +1 -1
- package/src/components/logo/README.md +3 -3
- package/src/components/margin/README.md +1 -1
- package/src/components/menu/README.md +3 -2
- package/src/components/page/README.md +2 -2
- package/src/components/page-footer/README.md +17 -14
- package/src/components/page-header/README.md +6 -4
- package/src/components/page-header/page-header.scss +7 -0
- package/src/components/paragraph/paragraph.scss +18 -3
- package/src/components/progress-list/README.md +14 -0
- package/src/components/progress-list/progress-list.scss +248 -0
- package/src/components/time-input/time-input.scss +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,44 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.1.0](https://github.com/Amsterdam/design-system/compare/design-system-css-v3.0.0...design-system-css-v3.1.0) (2026-01-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **Badge:** Add option to include an icon ([#2385](https://github.com/Amsterdam/design-system/issues/2385)) ([698c776](https://github.com/Amsterdam/design-system/commit/698c7762f9bc0c844598e71c45165f472d03c185))
|
|
12
|
+
* Introduce Progress List component ([#2373](https://github.com/Amsterdam/design-system/issues/2373)) ([7309159](https://github.com/Amsterdam/design-system/commit/730915911eb28dff40137ff15063cf33c21f26fc))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **DateInput, TimeInput:** Prevent focus on picker icon when input is disabled ([#2378](https://github.com/Amsterdam/design-system/issues/2378)) ([e3fff0f](https://github.com/Amsterdam/design-system/commit/e3fff0fcf7fea144663342493a83afd4e73da7e8))
|
|
18
|
+
* **Error Message:** Prevent adjacent elements from rendering inline ([#2389](https://github.com/Amsterdam/design-system/issues/2389)) ([112d76c](https://github.com/Amsterdam/design-system/commit/112d76c7dc1fd6f72d5c09dd5bca3d248e8b60ee))
|
|
19
|
+
* **Image Slider:** Refactor and add tests ([#2375](https://github.com/Amsterdam/design-system/issues/2375)) ([0d01f0b](https://github.com/Amsterdam/design-system/commit/0d01f0b83c7f3b4b44765b0a9ccfe8ba287bb8aa))
|
|
20
|
+
|
|
21
|
+
## [3.0.0](https://github.com/Amsterdam/design-system/compare/design-system-css-v2.2.0...design-system-css-v3.0.0) (2026-01-09)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
### ⚠ BREAKING CHANGES
|
|
25
|
+
|
|
26
|
+
* **Field, Field Set:** Change spacing between elements ([#2358](https://github.com/Amsterdam/design-system/issues/2358))
|
|
27
|
+
* Although his change does not change the technical API, it may make spacing in your website incorrect.
|
|
28
|
+
**How to update**: Remove the utility classes (`ams-mb-*`) from children of Field and Field Set that we previously recommended. This now gets handled by the components.
|
|
29
|
+
|
|
30
|
+
* **Page Header:** Add vertical space to Mega Menu in Spacious Mode ([#2298](https://github.com/Amsterdam/design-system/issues/2298))
|
|
31
|
+
* Although his change does not change the technical API, it may make spacing in your website incorrect.
|
|
32
|
+
**How to update**: Remove vertical white space from the children of Page Header.
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
* **Field, Field Set:** Change spacing between elements ([#2358](https://github.com/Amsterdam/design-system/issues/2358)) ([6bcace7](https://github.com/Amsterdam/design-system/commit/6bcace7930b1e1247601380a4e5bff1c318bbbcf))
|
|
37
|
+
* **Page Footer:** Automatically render visually hidden heading before menu ([#2359](https://github.com/Amsterdam/design-system/issues/2359)) ([9019a78](https://github.com/Amsterdam/design-system/commit/9019a7891b7b2e31d9faab238317c34753bf7870))
|
|
38
|
+
* **Page Header:** Add vertical space to Mega Menu in Spacious Mode ([#2298](https://github.com/Amsterdam/design-system/issues/2298)) ([3ae1729](https://github.com/Amsterdam/design-system/commit/3ae17299853fc6f35e639dfc8d9f7f97476bdbac))
|
|
39
|
+
* **Page Header:** Add visually hidden description to menu button, hide menu button when CSS does not load ([#2340](https://github.com/Amsterdam/design-system/issues/2340)) ([f19ef3a](https://github.com/Amsterdam/design-system/commit/f19ef3a646ce18447a5f34382acd1eab5f7b82bb))
|
|
40
|
+
* **Page Header:** Hide duplicate content of ‘narrow window only Grid Cell’ until CSS loads ([#2305](https://github.com/Amsterdam/design-system/issues/2305)) ([991252d](https://github.com/Amsterdam/design-system/commit/991252dc02e98012e278bae8c9376d2c8060c948))
|
|
41
|
+
* **Paragraph:** Balance line lengths of lead paragraphs ([#2309](https://github.com/Amsterdam/design-system/issues/2309)) ([afeab6e](https://github.com/Amsterdam/design-system/commit/afeab6ebe7da883fb984e23cd9d0661f3524bb60))
|
|
42
|
+
* **Paragraph:** Distinguish large and small variants without CSS ([#2315](https://github.com/Amsterdam/design-system/issues/2315)) ([c3bb5f7](https://github.com/Amsterdam/design-system/commit/c3bb5f74b1ffb8895b825a64f2fef704129b5e12))
|
|
43
|
+
|
|
6
44
|
## [2.2.0](https://github.com/Amsterdam/design-system/compare/design-system-css-v2.1.0...design-system-css-v2.2.0) (2025-11-21)
|
|
7
45
|
|
|
8
46
|
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Use it to apply the visual design of the City of Amsterdam to your HTML elements
|
|
|
7
7
|
|
|
8
8
|
## Introduction
|
|
9
9
|
|
|
10
|
-
We publish our components’ stylesheets as a separate package to help replicating them in other libraries, platforms, or
|
|
10
|
+
We publish our components’ stylesheets as a separate package to help replicating them in other libraries, platforms, or SaaS applications.
|
|
11
11
|
The classes are a contract between the component’s definition and its implementations and they facilitate ongoing upgrades.
|
|
12
12
|
|
|
13
13
|
Our [React components](https://www.npmjs.com/package/@amsterdam/design-system-react) use these classes in the HTML they render.
|
|
@@ -65,9 +65,9 @@ Although it is not a typical use case, the stylesheet can be included in an HTML
|
|
|
65
65
|
</html>
|
|
66
66
|
```
|
|
67
67
|
|
|
68
|
-
### Compact
|
|
68
|
+
### Compact Mode
|
|
69
69
|
|
|
70
|
-
[Load the compact tokens](https://github.com/Amsterdam/design-system/blob/main/packages-proprietary/tokens/README.md) to use the compact appearance of the design system, e.g. for
|
|
70
|
+
[Load the compact tokens](https://github.com/Amsterdam/design-system/blob/main/packages-proprietary/tokens/README.md) to use the compact appearance of the design system, e.g. for internal websites with a high information density.
|
|
71
71
|
They override the spacious ones; the stylesheets can remain unchanged.
|
|
72
72
|
|
|
73
73
|
### Global styles
|
package/dist/badge/badge.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ams-badge{background-color:var(--ams-badge-background-color);color:var(--ams-badge-color);display:inline-
|
|
1
|
+
.ams-badge{background-color:var(--ams-badge-background-color);color:var(--ams-badge-color);display:inline-flex;font-family:var(--ams-badge-font-family);font-size:var(--ams-badge-font-size);font-weight:var(--ams-badge-font-weight);gap:var(--ams-badge-gap);line-height:var(--ams-badge-line-height);padding-inline:var(--ams-badge-padding-inline);hyphenate-limit-chars:var(--ams-typography-hyphenate-limit-chars);hyphens:auto;overflow-wrap:break-word;text-rendering:optimizeLegibility;-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}.ams-badge--azure{background-color:var(--ams-badge-azure-background-color);color:var(--ams-badge-azure-color)}.ams-badge--lime{background-color:var(--ams-badge-lime-background-color);color:var(--ams-badge-lime-color)}.ams-badge--magenta{background-color:var(--ams-badge-magenta-background-color);color:var(--ams-badge-magenta-color)}.ams-badge--orange{background-color:var(--ams-badge-orange-background-color);color:var(--ams-badge-orange-color)}.ams-badge--purple{background-color:var(--ams-badge-purple-background-color);color:var(--ams-badge-purple-color)}.ams-badge--red{background-color:var(--ams-badge-red-background-color);color:var(--ams-badge-red-color)}.ams-badge--yellow{background-color:var(--ams-badge-yellow-background-color);color:var(--ams-badge-yellow-color)}/*# sourceMappingURL=badge.css.map */
|
package/dist/badge/badge.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../src/components/badge/badge.scss","../../src/common/hyphenation.scss","../../src/common/text-rendering.scss"],"names":[],"mappings":"AAQA,WACE,mDACA,6BACA,
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/components/badge/badge.scss","../../src/common/hyphenation.scss","../../src/common/text-rendering.scss"],"names":[],"mappings":"AAQA,WACE,mDACA,6BACA,oBACA,yCACA,qCACA,yCACA,yBACA,yCACA,+CCTA,kEAEA,aACA,yBCDA,kCACA,2BACA,8BAIA,sBFOF,kBACE,yDACA,mCAGF,iBACE,wDACA,kCAGF,oBACE,2DACA,qCAGF,mBACE,0DACA,oCAGF,mBACE,0DACA,oCAGF,gBACE,uDACA,iCAGF,mBACE,0DACA","file":"badge.css"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.ams-date-input{background-color:var(--ams-date-input-background-color);border-color:var(--ams-date-input-border-color);border-style:var(--ams-date-input-border-style);border-width:var(--ams-date-input-border-width);box-sizing:border-box;color:var(--ams-date-input-color);font-family:var(--ams-date-input-font-family);font-size:var(--ams-date-input-font-size);font-weight:var(--ams-date-input-font-weight);line-height:var(--ams-date-input-line-height);min-block-size:calc(var(--ams-date-input-font-size)*var(--ams-date-input-line-height) + 2*var(--ams-date-input-padding-block));min-inline-size:calc(8ch + 2*var(--ams-date-input-padding-inline));outline-offset:var(--ams-date-input-outline-offset);padding-block:var(--ams-date-input-padding-block);padding-inline:var(--ams-date-input-padding-inline);touch-action:manipulation;text-rendering:optimizeLegibility;-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none;-webkit-appearance:none;appearance:none;border-radius:0;margin-block:0}.ams-date-input::-webkit-datetime-edit,.ams-date-input::-webkit-datetime-edit-ampm-field,.ams-date-input::-webkit-datetime-edit-day-field,.ams-date-input::-webkit-datetime-edit-fields-wrapper,.ams-date-input::-webkit-datetime-edit-hour-field,.ams-date-input::-webkit-datetime-edit-millisecond-field,.ams-date-input::-webkit-datetime-edit-minute-field,.ams-date-input::-webkit-datetime-edit-month-field,.ams-date-input::-webkit-datetime-edit-second-field,.ams-date-input::-webkit-datetime-edit-week-field,.ams-date-input::-webkit-datetime-edit-year-field{padding-block:0}.ams-date-input::-webkit-calendar-picker-indicator{appearance:none;background-image:var(--ams-date-input-calendar-picker-indicator-background-image);cursor:var(--ams-date-input-calendar-picker-indicator-cursor)}.ams-date-input:hover::-webkit-calendar-picker-indicator{background-image:var(--ams-date-input-hover-calendar-picker-indicator-background-image)}.ams-date-input:disabled{color:var(--ams-date-input-disabled-color);cursor:var(--ams-date-input-disabled-cursor)}.ams-date-input:
|
|
1
|
+
.ams-date-input{background-color:var(--ams-date-input-background-color);border-color:var(--ams-date-input-border-color);border-style:var(--ams-date-input-border-style);border-width:var(--ams-date-input-border-width);box-sizing:border-box;color:var(--ams-date-input-color);font-family:var(--ams-date-input-font-family);font-size:var(--ams-date-input-font-size);font-weight:var(--ams-date-input-font-weight);line-height:var(--ams-date-input-line-height);min-block-size:calc(var(--ams-date-input-font-size)*var(--ams-date-input-line-height) + 2*var(--ams-date-input-padding-block));min-inline-size:calc(8ch + 2*var(--ams-date-input-padding-inline));outline-offset:var(--ams-date-input-outline-offset);padding-block:var(--ams-date-input-padding-block);padding-inline:var(--ams-date-input-padding-inline);touch-action:manipulation;text-rendering:optimizeLegibility;-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none;-webkit-appearance:none;appearance:none;border-radius:0;margin-block:0}.ams-date-input::-webkit-datetime-edit,.ams-date-input::-webkit-datetime-edit-ampm-field,.ams-date-input::-webkit-datetime-edit-day-field,.ams-date-input::-webkit-datetime-edit-fields-wrapper,.ams-date-input::-webkit-datetime-edit-hour-field,.ams-date-input::-webkit-datetime-edit-millisecond-field,.ams-date-input::-webkit-datetime-edit-minute-field,.ams-date-input::-webkit-datetime-edit-month-field,.ams-date-input::-webkit-datetime-edit-second-field,.ams-date-input::-webkit-datetime-edit-week-field,.ams-date-input::-webkit-datetime-edit-year-field{padding-block:0}.ams-date-input::-webkit-calendar-picker-indicator{appearance:none;background-image:var(--ams-date-input-calendar-picker-indicator-background-image);cursor:var(--ams-date-input-calendar-picker-indicator-cursor)}.ams-date-input:hover::-webkit-calendar-picker-indicator{background-image:var(--ams-date-input-hover-calendar-picker-indicator-background-image)}.ams-date-input:disabled{color:var(--ams-date-input-disabled-color);cursor:var(--ams-date-input-disabled-cursor)}.ams-date-input:not(:disabled):invalid,.ams-date-input:not(:disabled)[aria-invalid=true]{border-color:var(--ams-date-input-invalid-border-color)}.ams-date-input:not(:disabled):hover{box-shadow:var(--ams-date-input-hover-box-shadow)}.ams-date-input:not(:disabled):invalid:hover,.ams-date-input:not(:disabled)[aria-invalid=true]:hover{border-color:var(--ams-date-input-invalid-hover-border-color);box-shadow:var(--ams-date-input-invalid-hover-box-shadow)}/*# sourceMappingURL=date-input.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../src/components/date-input/date-input.scss","../../src/common/text-rendering.scss"],"names":[],"mappings":"AA4BA,gBACE,wDACA,gDACA,gDACA,gDACA,sBACA,kCACA,8CACA,0CACA,8CACA,8CAGA,+HAKA,mEACA,oDACA,kDACA,oDACA,0BCxCA,kCACA,2BACA,8BAIA,sBDRA,wBACA,gBACA,gBACA,eAEA,0iBAWE,gBAiCJ,mDACE,gBACA,kFACA,8DAGF,yDACE,wFAGF,yBACE,2CACA,6CAGF,
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/components/date-input/date-input.scss","../../src/common/text-rendering.scss"],"names":[],"mappings":"AA4BA,gBACE,wDACA,gDACA,gDACA,gDACA,sBACA,kCACA,8CACA,0CACA,8CACA,8CAGA,+HAKA,mEACA,oDACA,kDACA,oDACA,0BCxCA,kCACA,2BACA,8BAIA,sBDRA,wBACA,gBACA,gBACA,eAEA,0iBAWE,gBAiCJ,mDACE,gBACA,kFACA,8DAGF,yDACE,wFAGF,yBACE,2CACA,6CAGF,yFAEE,wDAGF,qCACE,kDAGF,qGAEE,8DACA","file":"date-input.css"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.ams-error-message{box-sizing:border-box;color:var(--ams-error-message-color);display:
|
|
1
|
+
.ams-error-message{box-sizing:border-box;color:var(--ams-error-message-color);display:flex;font-family:var(--ams-error-message-font-family);font-size:var(--ams-error-message-font-size);font-weight:var(--ams-error-message-font-weight);gap:var(--ams-error-message-gap);line-height:var(--ams-error-message-line-height);hyphenate-limit-chars:var(--ams-typography-hyphenate-limit-chars);hyphens:auto;overflow-wrap:break-word;text-rendering:optimizeLegibility;-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none;margin-block:0}/*# sourceMappingURL=error-message.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../src/components/error-message/error-message.scss","../../src/common/hyphenation.scss","../../src/common/text-rendering.scss"],"names":[],"mappings":"AAYA,mBACE,sBACA,qCACA,
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/components/error-message/error-message.scss","../../src/common/hyphenation.scss","../../src/common/text-rendering.scss"],"names":[],"mappings":"AAYA,mBACE,sBACA,qCACA,aACA,iDACA,6CACA,iDACA,iCACA,iDCZA,kEAEA,aACA,yBCDA,kCACA,2BACA,8BAIA,sBFPA","file":"error-message.css"}
|
package/dist/field/field.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.ams-field{align-items:start;break-inside:avoid
|
|
1
|
+
.ams-field{align-items:start;break-inside:avoid}.ams-field>:not(:last-child){margin-block-end:var(--ams-field-child-margin-block-end)}.ams-field>:has(+.ams-error-message){margin-block-end:var(--ams-field-child-before-error-message-margin-block-end)}.ams-field--invalid{border-inline-start:var(--ams-field-invalid-border-inline-start);padding-inline-start:var(--ams-field-invalid-padding-inline-start)}/*# sourceMappingURL=field.css.map */
|
package/dist/field/field.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../src/components/field/field.scss"],"names":[],"mappings":"AAKA,WACE,kBACA,
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/components/field/field.scss"],"names":[],"mappings":"AAKA,WACE,kBACA,mBAIF,6BACE,yDAMF,qCACE,8EAGF,oBACE,iEACA","file":"field.css"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.ams-field-set{break-inside:avoid;border:none;margin-inline:0;padding-block:0;padding-inline:0}.ams-field-set--invalid{border-inline-start:var(--ams-field-set-invalid-border-inline-start);padding-inline-start:var(--ams-field-set-invalid-padding-inline-start)}.ams-field-set__legend{color:var(--ams-field-set-legend-color);font-family:var(--ams-field-set-legend-font-family);font-size:var(--ams-field-set-legend-font-size);font-weight:var(--ams-field-set-legend-font-weight);line-height:var(--ams-field-set-legend-line-height);
|
|
1
|
+
.ams-field-set{break-inside:avoid;border:none;margin-inline:0;padding-block:0;padding-inline:0}.ams-field-set>:not(:last-child){margin-block-end:var(--ams-field-set-child-margin-block-end)}.ams-field-set>:has(+.ams-error-message){margin-block-end:var(--ams-field-set-child-before-error-message-margin-block-end)}.ams-field-set>:has(+.ams-field),.ams-field-set>:has(+.ams-field-set){margin-block-end:var(--ams-field-set-child-before-field-or-field-set-margin-block-end)}.ams-field-set>:is(.ams-field,.ams-field-set):has(+:is(.ams-field,.ams-field-set)){margin-block-end:var(--ams-field-set-child-between-fields-and-field-sets-margin-block-end)}.ams-field-set--invalid{border-inline-start:var(--ams-field-set-invalid-border-inline-start);padding-inline-start:var(--ams-field-set-invalid-padding-inline-start)}.ams-field-set__legend{color:var(--ams-field-set-legend-color);font-family:var(--ams-field-set-legend-font-family);font-size:var(--ams-field-set-legend-font-size);font-weight:var(--ams-field-set-legend-font-weight);line-height:var(--ams-field-set-legend-line-height);text-wrap:var(--ams-field-set-legend-text-wrap);hyphenate-limit-chars:var(--ams-typography-hyphenate-limit-chars);hyphens:auto;overflow-wrap:break-word;text-rendering:optimizeLegibility;-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none;float:left;inline-size:100%;padding-inline:0}.ams-field-set__legend+*{clear:both}.ams-field-set__legend--in-fieldset{font-weight:var(--ams-field-set-legend-in-fieldset-font-weight)}.ams-field-set__heading{font-size:inherit;font-weight:inherit;margin-block:0}/*# sourceMappingURL=field-set.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../src/components/field-set/field-set.scss","../../src/common/hyphenation.scss","../../src/common/text-rendering.scss"],"names":[],"mappings":"AAeA,eACE,mBAPA,YACA,gBACA,gBACA,
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/components/field-set/field-set.scss","../../src/common/hyphenation.scss","../../src/common/text-rendering.scss"],"names":[],"mappings":"AAeA,eACE,mBAPA,YACA,gBACA,gBACA,iBAUF,iCACE,6DAMF,yCACE,kFAKF,sEAEE,uFAKF,mFACE,2FAGF,wBACE,qEACA,uEAcF,uBACE,wCACA,oDACA,gDACA,oDACA,oDAOA,gDClEA,kEAEA,aACA,yBCDA,kCACA,2BACA,8BAIA,sBFqCA,WACA,iBACA,iBAEA,yBACE,WAuBJ,oCACE,gEAGF,wBACE,kBACA,oBACA","file":"field-set.css"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.ams-file-input{background-color:var(--ams-file-input-background-color);border-color:var(--ams-file-input-border-color);border-style:var(--ams-file-input-border-style);border-width:var(--ams-file-input-border-width);box-sizing:border-box;color:var(--ams-file-input-color);cursor:var(--ams-file-input-cursor);font-family:var(--ams-file-input-font-family);font-size:var(--ams-file-input-font-size);font-weight:var(--ams-file-input-font-weight);inline-size:100%;line-height:var(--ams-file-input-line-height);outline-offset:var(--ams-file-input-outline-offset);padding-block:var(--ams-file-input-padding-block);padding-inline:var(--ams-file-input-padding-inline);touch-action:manipulation;text-rendering:optimizeLegibility;-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}.ams-file-input:disabled{color:var(--ams-file-input-disabled-color);cursor:var(--ams-file-input-disabled-cursor)}.ams-file-input::file-selector-button{-webkit-appearance:none;appearance:none;background-color:var(--ams-file-input-file-selector-button-background-color);border-color:var(--ams-file-input-file-selector-button-border-color);border-style:var(--ams-file-input-file-selector-button-border-style);border-width:var(--ams-file-input-file-selector-button-border-width);box-sizing:border-box;color:var(--ams-file-input-file-selector-button-color);cursor:var(--ams-file-input-file-selector-button-cursor);font-family:inherit;font-size:inherit;font-weight:inherit;line-height:var(--ams-file-input-file-selector-button-line-height);margin-inline-end:var(--ams-file-input-file-selector-button-margin-inline-end);padding-block:var(--ams-file-input-file-selector-button-padding-block);padding-inline:var(--ams-file-input-file-selector-button-padding-inline)
|
|
1
|
+
.ams-file-input{background-color:var(--ams-file-input-background-color);border-color:var(--ams-file-input-border-color);border-style:var(--ams-file-input-border-style);border-width:var(--ams-file-input-border-width);box-sizing:border-box;color:var(--ams-file-input-color);cursor:var(--ams-file-input-cursor);font-family:var(--ams-file-input-font-family);font-size:var(--ams-file-input-font-size);font-weight:var(--ams-file-input-font-weight);inline-size:100%;line-height:var(--ams-file-input-line-height);outline-offset:var(--ams-file-input-outline-offset);padding-block:var(--ams-file-input-padding-block);padding-inline:var(--ams-file-input-padding-inline);touch-action:manipulation;text-rendering:optimizeLegibility;-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none}.ams-file-input:disabled{color:var(--ams-file-input-disabled-color);cursor:var(--ams-file-input-disabled-cursor)}.ams-file-input::file-selector-button{-webkit-appearance:none;appearance:none;background-color:var(--ams-file-input-file-selector-button-background-color);border-color:var(--ams-file-input-file-selector-button-border-color);border-style:var(--ams-file-input-file-selector-button-border-style);border-width:var(--ams-file-input-file-selector-button-border-width);box-sizing:border-box;color:var(--ams-file-input-file-selector-button-color);cursor:var(--ams-file-input-file-selector-button-cursor);font-family:inherit;font-size:inherit;font-weight:inherit;line-height:var(--ams-file-input-file-selector-button-line-height);margin-inline-end:var(--ams-file-input-file-selector-button-margin-inline-end);padding-block:var(--ams-file-input-file-selector-button-padding-block);padding-inline:var(--ams-file-input-file-selector-button-padding-inline)}.ams-file-input:disabled::file-selector-button{color:var(--ams-file-input-disabled-color);cursor:var(--ams-file-input-file-selector-button-disabled-cursor)}.ams-file-input:not(:disabled):hover::file-selector-button{box-shadow:var(--ams-file-input-file-selector-button-hover-box-shadow);color:var(--ams-file-input-file-selector-button-hover-color)}/*# sourceMappingURL=file-input.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../src/components/file-input/file-input.scss","../../src/common/text-rendering.scss"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/components/file-input/file-input.scss","../../src/common/text-rendering.scss"],"names":[],"mappings":"AAOA,gBACE,wDACA,gDACA,gDACA,gDACA,sBACA,kCACA,oCACA,8CACA,0CACA,8CACA,iBACA,8CACA,oDACA,kDACA,oDACA,0BCbA,kCACA,2BACA,8BAIA,sBDYF,yBACE,2CACA,6CAGF,sCACE,wBACA,gBACA,6EACA,qEACA,qEACA,qEACA,sBACA,uDACA,yDACA,oBACA,kBACA,oBACA,mEACA,+EACA,uEACA,yEAGF,+CACE,2CACA,kEAGF,2DACE,uEACA","file":"file-input.css"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.ams-image-slider{display:grid;gap:var(--ams-image-slider-gap)
|
|
1
|
+
.ams-image-slider{display:grid;gap:var(--ams-image-slider-gap)}.ams-image-slider__item{scroll-snap-align:center;scroll-snap-stop:always}.ams-image-slider__scroller{align-items:center;display:grid;gap:var(--ams-image-slider-scroller-gap);grid-auto-columns:100%;grid-auto-flow:column;grid-column:1/-1;grid-row:1;outline-offset:var(--ams-image-slider-scroller-outline-offset);overflow-x:auto;overscroll-behavior-x:contain;position:relative;scroll-snap-type:x mandatory;scrollbar-width:none}.ams-image-slider__scroller::-webkit-scrollbar{display:none}@media not (prefers-reduced-motion){.ams-image-slider__scroller{scroll-behavior:smooth}}.ams-image-slider__controls{display:flex;grid-column:1/-1;grid-row:1;justify-content:space-between}@media(pointer: coarse)and (max-width: 37.5rem){.ams-image-slider__controls{display:none}}.ams-image-slider__control{place-self:center;z-index:1}.ams-image-slider__thumbnails{display:grid;gap:var(--ams-image-slider-thumbnails-gap);grid-template-columns:repeat(5, 1fr)}.ams-image-slider__thumbnail{aspect-ratio:var(--ams-image-aspect-ratio);background-color:var(--ams-image-slider-thumbnails-thumbnail-background-color);background-position:center;background-size:cover;cursor:var(--ams-image-slider-thumbnails-thumbnail-cursor);opacity:var(--ams-image-slider-thumbnails-thumbnail-opacity);outline-offset:var(--ams-button-outline-offset);border:none;padding-block:0;padding-inline:0}.ams-image-slider__thumbnail:hover{opacity:var(--ams-image-slider-thumbnails-thumbnail-hover-opacity)}.ams-image-slider__thumbnail--in-view{opacity:var(--ams-image-slider-thumbnails-thumbnail-in-view-opacity)}/*# sourceMappingURL=image-slider.css.map */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sourceRoot":"","sources":["../../src/components/image-slider/image-slider.scss"],"names":[],"mappings":"AAOA,kBACE,aACA,
|
|
1
|
+
{"version":3,"sourceRoot":"","sources":["../../src/components/image-slider/image-slider.scss"],"names":[],"mappings":"AAOA,kBACE,aACA,gCAGF,wBACE,yBACA,wBAGF,4BACE,mBACA,aACA,yCACA,uBACA,sBACA,iBACA,WACA,+DACA,gBACA,8BAMA,kBACA,6BAOA,qBAEA,+CACE,aAGF,oCA9BF,4BA+BI,wBAIJ,4BACE,aACA,iBACA,WACA,8BAEA,gDANF,4BAOI,cAIJ,2BACE,kBACA,UAGF,8BACE,aACA,2CACA,qCASF,6BACE,2CACA,+EACA,2BACA,sBACA,2DACA,6DACA,gDAZA,YACA,gBACA,iBAcA,mCACE,mEAIJ,sCACE","file":"image-slider.css"}
|