@getflip/swirl-ai 0.493.2 → 0.494.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.
@@ -11,6 +11,7 @@ _None._
11
11
  ## Optional props
12
12
 
13
13
  - `firstDayOfWeek` (number | undefined) –
14
+ - `fixedAspectRatio` (boolean | undefined) –
14
15
  - `fixedMaxWidth` (boolean | undefined) –
15
16
  - `locale` (string | undefined) –
16
17
  - `range` (boolean | undefined) –
@@ -7623,6 +7623,14 @@
7623
7623
  "default": "0",
7624
7624
  "fieldName": "firstDayOfWeek"
7625
7625
  },
7626
+ {
7627
+ "name": "fixed-aspect-ratio",
7628
+ "type": {
7629
+ "text": "boolean | undefined"
7630
+ },
7631
+ "default": "true",
7632
+ "fieldName": "fixedAspectRatio"
7633
+ },
7626
7634
  {
7627
7635
  "name": "fixed-max-width",
7628
7636
  "type": {
@@ -7672,6 +7680,16 @@
7672
7680
  "default": "0",
7673
7681
  "attribute": "first-day-of-week"
7674
7682
  },
7683
+ {
7684
+ "kind": "field",
7685
+ "name": "fixedAspectRatio",
7686
+ "type": {
7687
+ "text": "boolean | undefined"
7688
+ },
7689
+ "default": "true",
7690
+ "readonly": true,
7691
+ "attribute": "fixed-aspect-ratio"
7692
+ },
7675
7693
  {
7676
7694
  "kind": "field",
7677
7695
  "name": "fixedMaxWidth",
@@ -5,6 +5,7 @@ export declare class SwirlDatePicker {
5
5
  el: HTMLElement;
6
6
  disableDate?: (date: Date) => boolean;
7
7
  firstDayOfWeek?: number;
8
+ fixedAspectRatio?: boolean;
8
9
  fixedMaxWidth: boolean;
9
10
  labels?: WCDatepickerLabels;
10
11
  locale?: string;
@@ -928,6 +928,10 @@ export namespace Components {
928
928
  * @default 0
929
929
  */
930
930
  "firstDayOfWeek"?: number;
931
+ /**
932
+ * @default true
933
+ */
934
+ "fixedAspectRatio"?: boolean;
931
935
  /**
932
936
  * @default true
933
937
  */
@@ -10827,6 +10831,10 @@ declare namespace LocalJSX {
10827
10831
  * @default 0
10828
10832
  */
10829
10833
  "firstDayOfWeek"?: number;
10834
+ /**
10835
+ * @default true
10836
+ */
10837
+ "fixedAspectRatio"?: boolean;
10830
10838
  /**
10831
10839
  * @default true
10832
10840
  */
@@ -15785,6 +15793,7 @@ declare namespace LocalJSX {
15785
15793
  }
15786
15794
  interface SwirlDatePickerAttributes {
15787
15795
  "firstDayOfWeek": number;
15796
+ "fixedAspectRatio": boolean;
15788
15797
  "fixedMaxWidth": boolean;
15789
15798
  "locale": string;
15790
15799
  "range": boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getflip/swirl-ai",
3
- "version": "0.493.2",
3
+ "version": "0.494.0",
4
4
  "description": "Swirl Design System AI package with artifacts for AI agents",
5
5
  "author": "Flip GmbH",
6
6
  "repository": {
@@ -26,7 +26,7 @@
26
26
  "lint": "tsc --noEmit"
27
27
  },
28
28
  "devDependencies": {
29
- "@getflip/swirl-components": "0.493.2",
29
+ "@getflip/swirl-components": "0.494.0",
30
30
  "@getflip/swirl-tokens": "2.14.3",
31
31
  "@types/node": "25.3.0",
32
32
  "tsx": "^4.7.0",