@daikin-oss/design-system-web-components 1.5.0 → 1.5.1-next.1

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 CHANGED
@@ -1,5 +1,21 @@
1
1
  # @daikin-oss/design-system-web-components
2
2
 
3
+ ## 1.5.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`5dc44bc`](https://github.com/dsv-rp/DDS/commit/5dc44bcdd26745a67eaba649eea30001a58d49a4) Thanks [@yodas7](https://github.com/yodas7)! - Fix automated release not working on certain situations.
8
+
9
+ ## 1.5.1-next.0
10
+
11
+ ### Patch Changes
12
+
13
+ - [#383](https://github.com/dsv-rp/DDS/pull/383) [`27e3efb`](https://github.com/dsv-rp/DDS/commit/27e3efbbfe89cacf5153686cc3f333df98bbd6a3) Thanks [@yodas7](https://github.com/yodas7)! - Fix a styling issue where some styles break when this library is used in products that do not use Tailwind CSS 4.
14
+
15
+ This keeps Shadow DOM fallback styles available by unwrapping `@supports` rules inside the `properties` layer and removing unsupported `@property` at-rules.
16
+
17
+ - [#380](https://github.com/dsv-rp/DDS/pull/380) [`1071880`](https://github.com/dsv-rp/DDS/commit/10718803adef26c8cf257f8b4806897c0b801140) Thanks [@dk-wei](https://github.com/dk-wei)! - Text Masked Field Kitchen Sink: Change default icon type and fix icon color issue.
18
+
3
19
  ## 1.5.0
4
20
 
5
21
  ### Minor Changes
@@ -1171,6 +1171,30 @@
1171
1171
  }
1172
1172
  ]
1173
1173
  },
1174
+ {
1175
+ "kind": "javascript-module",
1176
+ "path": "dist/es/constants/events.js",
1177
+ "declarations": [
1178
+ {
1179
+ "kind": "variable",
1180
+ "name": "EVENT_CLOSE",
1181
+ "type": {
1182
+ "text": "string"
1183
+ },
1184
+ "default": "\"close\""
1185
+ }
1186
+ ],
1187
+ "exports": [
1188
+ {
1189
+ "kind": "js",
1190
+ "name": "EVENT_CLOSE",
1191
+ "declaration": {
1192
+ "name": "EVENT_CLOSE",
1193
+ "module": "src/constants/events.ts"
1194
+ }
1195
+ }
1196
+ ]
1197
+ },
1174
1198
  {
1175
1199
  "kind": "javascript-module",
1176
1200
  "path": "dist/es/components/index.js",
@@ -1682,30 +1706,6 @@
1682
1706
  }
1683
1707
  ]
1684
1708
  },
1685
- {
1686
- "kind": "javascript-module",
1687
- "path": "dist/es/constants/events.js",
1688
- "declarations": [
1689
- {
1690
- "kind": "variable",
1691
- "name": "EVENT_CLOSE",
1692
- "type": {
1693
- "text": "string"
1694
- },
1695
- "default": "\"close\""
1696
- }
1697
- ],
1698
- "exports": [
1699
- {
1700
- "kind": "js",
1701
- "name": "EVENT_CLOSE",
1702
- "declaration": {
1703
- "name": "EVENT_CLOSE",
1704
- "module": "src/constants/events.ts"
1705
- }
1706
- }
1707
- ]
1708
- },
1709
1709
  {
1710
1710
  "kind": "javascript-module",
1711
1711
  "path": "dist/es/controllers/click-outside.js",
@@ -84,6 +84,6 @@ const _DDSElement = class _DDSElement extends lit.LitElement {
84
84
  return this[key];
85
85
  }
86
86
  };
87
- _DDSElement.version = "1.5.0";
87
+ _DDSElement.version = "1.5.1-next.1";
88
88
  let DDSElement = _DDSElement;
89
89
  exports.DDSElement = DDSElement;