@getflip/swirl-components 0.264.0 → 0.265.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/components.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2024-12-03T09:41:45",
2
+ "timestamp": "2024-12-04T16:08:34",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "4.18.1",
@@ -47611,10 +47611,10 @@
47611
47611
  "props": [
47612
47612
  {
47613
47613
  "name": "borderColor",
47614
- "type": "\"default\" | \"strong\"",
47614
+ "type": "\"default\" | \"highlight\" | \"strong\"",
47615
47615
  "complexType": {
47616
47616
  "original": "SwirlSeparatorBorderColor",
47617
- "resolved": "\"default\" | \"strong\"",
47617
+ "resolved": "\"default\" | \"highlight\" | \"strong\"",
47618
47618
  "references": {
47619
47619
  "SwirlSeparatorBorderColor": {
47620
47620
  "location": "local",
@@ -47634,6 +47634,10 @@
47634
47634
  "value": "default",
47635
47635
  "type": "string"
47636
47636
  },
47637
+ {
47638
+ "value": "highlight",
47639
+ "type": "string"
47640
+ },
47637
47641
  {
47638
47642
  "value": "strong",
47639
47643
  "type": "string"
@@ -59348,7 +59352,7 @@
59348
59352
  "path": "src/components/swirl-search/swirl-search.tsx"
59349
59353
  },
59350
59354
  "src/components/swirl-separator/swirl-separator.tsx::SwirlSeparatorBorderColor": {
59351
- "declaration": "export type SwirlSeparatorBorderColor = \"default\" | \"strong\";",
59355
+ "declaration": "export type SwirlSeparatorBorderColor = \"default\" | \"strong\" | \"highlight\";",
59352
59356
  "docstring": "",
59353
59357
  "path": "src/components/swirl-separator/swirl-separator.tsx"
59354
59358
  },
@@ -139,7 +139,7 @@ const SwirlActionListItem = class {
139
139
  };
140
140
  SwirlActionListItem.style = SwirlActionListItemStyle0;
141
141
 
142
- const swirlSeparatorCss = ":host{display:flex;width:100%;align-items:center}:host *{box-sizing:border-box}:host(.separator--orientation-vertical){display:inline-flex;width:auto}:host(.separator--orientation-vertical) .separator__line{width:var(--s-border-width-default);height:100%;min-height:1.125rem}:host(.separator--border-color-strong) .separator__line{background-color:var(--s-border-strong)}.separator__line{display:block;width:100%;height:var(--s-border-width-default);background-color:var(--s-border-default)}";
142
+ const swirlSeparatorCss = ":host{display:flex;width:100%;align-items:center}:host *{box-sizing:border-box}:host(.separator--orientation-vertical){display:inline-flex;width:auto}:host(.separator--orientation-vertical) .separator__line{width:var(--s-border-width-default);height:100%;min-height:1.125rem}:host(.separator--border-color-strong) .separator__line{background-color:var(--s-border-strong)}:host(.separator--border-color-highlight) .separator__line{background-color:var(--s-border-highlight)}.separator__line{display:block;width:100%;height:var(--s-border-width-default);background-color:var(--s-border-default)}";
143
143
  const SwirlSeparatorStyle0 = swirlSeparatorCss;
144
144
 
145
145
  const SwirlSeparator = class {
@@ -160,7 +160,7 @@ const SwirlSeparator = class {
160
160
  paddingLeft: `var(--s-space-${this.spacing})`,
161
161
  };
162
162
  const className = index$1.classnames("separator", `separator--border-color-${this.borderColor}`, `separator--orientation-${this.orientation}`);
163
- return (index.h(index.Host, { key: '9b3bf40f3d40c3d3b9375b0123d0654b84112d74', "aria-orientation": this.orientation, class: className, role: "separator", style: styles }, index.h("span", { key: '90b75d9119cf2fa3d204fc041d4270739e047aa0', class: "separator__line" })));
163
+ return (index.h(index.Host, { key: '31df25534223187cebaad9cda91e97c7c6d0f220', "aria-orientation": this.orientation, class: className, role: "separator", style: styles }, index.h("span", { key: 'b6ca9955f2a8429d658dcc09308dd93503e41f1c', class: "separator__line" })));
164
164
  }
165
165
  };
166
166
  SwirlSeparator.style = SwirlSeparatorStyle0;