@skedulo/breeze-ui 1.25.2 → 1.26.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.
@@ -2665,6 +2665,14 @@
2665
2665
  "package": "./legacy-scoped-components"
2666
2666
  }
2667
2667
  },
2668
+ {
2669
+ "kind": "js",
2670
+ "name": "*",
2671
+ "declaration": {
2672
+ "name": "*",
2673
+ "package": "./date-time/date-range"
2674
+ }
2675
+ },
2668
2676
  {
2669
2677
  "kind": "js",
2670
2678
  "name": "*",
@@ -36165,6 +36173,174 @@
36165
36173
  }
36166
36174
  ]
36167
36175
  },
36176
+ {
36177
+ "kind": "javascript-module",
36178
+ "path": "src/components/date-time/date-range/date-range.const.ts",
36179
+ "declarations": [
36180
+ {
36181
+ "kind": "variable",
36182
+ "name": "DATE_RANGE"
36183
+ }
36184
+ ],
36185
+ "exports": [
36186
+ {
36187
+ "kind": "js",
36188
+ "name": "DATE_RANGE",
36189
+ "declaration": {
36190
+ "name": "DATE_RANGE",
36191
+ "module": "src/components/date-time/date-range/date-range.const.ts"
36192
+ }
36193
+ }
36194
+ ]
36195
+ },
36196
+ {
36197
+ "kind": "javascript-module",
36198
+ "path": "src/components/date-time/date-range/date-range.ts",
36199
+ "declarations": [
36200
+ {
36201
+ "kind": "class",
36202
+ "description": "DateRange is a component used to display a date range following the documented design patterns.\nIt intelligently formats date ranges based on whether they span the same month or year.\n\nExamples:\n- Same month: \"Aug 19 - 20, 2025\" (American) or \"19 - 20 Aug 2025\" (English)\n- Multi-month (same year): \"Aug 31 - Sep 1, 2025\" or \"31 Aug - 1 Sep 2025\"\n- Multi-year: \"Dec 31, 2025 - Jan 1, 2026\" or \"31 Dec 2025 - 1 Jan 2026\"",
36203
+ "name": "DateRange",
36204
+ "members": [
36205
+ {
36206
+ "kind": "field",
36207
+ "name": "start",
36208
+ "type": {
36209
+ "text": "string"
36210
+ },
36211
+ "description": "Start date in ISO format (YYYY-MM-DD)",
36212
+ "attribute": "start"
36213
+ },
36214
+ {
36215
+ "kind": "field",
36216
+ "name": "end",
36217
+ "type": {
36218
+ "text": "string"
36219
+ },
36220
+ "description": "End date in ISO format (YYYY-MM-DD)",
36221
+ "attribute": "end"
36222
+ },
36223
+ {
36224
+ "kind": "field",
36225
+ "name": "dateFormat",
36226
+ "type": {
36227
+ "text": "DateFormat"
36228
+ },
36229
+ "default": "'MonthDayYear'",
36230
+ "description": "Date format preference ('MonthDayYear' or 'DayMonthYear')",
36231
+ "attribute": "date-format"
36232
+ },
36233
+ {
36234
+ "kind": "method",
36235
+ "name": "formatDateRange",
36236
+ "privacy": "private",
36237
+ "return": {
36238
+ "type": {
36239
+ "text": "string"
36240
+ }
36241
+ },
36242
+ "description": "Formats a date range intelligently based on whether dates span the same month or year"
36243
+ }
36244
+ ],
36245
+ "attributes": [
36246
+ {
36247
+ "name": "start",
36248
+ "type": {
36249
+ "text": "string"
36250
+ },
36251
+ "description": "Start date in ISO format (YYYY-MM-DD)",
36252
+ "fieldName": "start"
36253
+ },
36254
+ {
36255
+ "name": "end",
36256
+ "type": {
36257
+ "text": "string"
36258
+ },
36259
+ "description": "End date in ISO format (YYYY-MM-DD)",
36260
+ "fieldName": "end"
36261
+ },
36262
+ {
36263
+ "name": "date-format",
36264
+ "type": {
36265
+ "text": "DateFormat"
36266
+ },
36267
+ "default": "'MonthDayYear'",
36268
+ "description": "Date format preference ('MonthDayYear' or 'DayMonthYear')",
36269
+ "fieldName": "dateFormat"
36270
+ }
36271
+ ],
36272
+ "superclass": {
36273
+ "name": "LitElement",
36274
+ "package": "lit"
36275
+ },
36276
+ "tagName": "brz-date-range",
36277
+ "customElement": true
36278
+ }
36279
+ ],
36280
+ "exports": [
36281
+ {
36282
+ "kind": "js",
36283
+ "name": "DateRange",
36284
+ "declaration": {
36285
+ "name": "DateRange",
36286
+ "module": "src/components/date-time/date-range/date-range.ts"
36287
+ }
36288
+ },
36289
+ {
36290
+ "kind": "custom-element-definition",
36291
+ "declaration": {
36292
+ "name": "DateRange",
36293
+ "module": "src/components/date-time/date-range/date-range.ts"
36294
+ }
36295
+ }
36296
+ ]
36297
+ },
36298
+ {
36299
+ "kind": "javascript-module",
36300
+ "path": "src/components/date-time/date-range/date-range.types.ts",
36301
+ "declarations": [],
36302
+ "exports": [
36303
+ {
36304
+ "kind": "js",
36305
+ "name": "DateFormat",
36306
+ "declaration": {
36307
+ "name": "DateFormat",
36308
+ "module": "src/components/date-time/date-range/date-range.types.ts"
36309
+ }
36310
+ }
36311
+ ]
36312
+ },
36313
+ {
36314
+ "kind": "javascript-module",
36315
+ "path": "src/components/date-time/date-range/index.ts",
36316
+ "declarations": [],
36317
+ "exports": [
36318
+ {
36319
+ "kind": "js",
36320
+ "name": "*",
36321
+ "declaration": {
36322
+ "name": "*",
36323
+ "package": "./date-range.const"
36324
+ }
36325
+ },
36326
+ {
36327
+ "kind": "js",
36328
+ "name": "*",
36329
+ "declaration": {
36330
+ "name": "*",
36331
+ "package": "./date-range.types"
36332
+ }
36333
+ },
36334
+ {
36335
+ "kind": "js",
36336
+ "name": "*",
36337
+ "declaration": {
36338
+ "name": "*",
36339
+ "package": "./date-range"
36340
+ }
36341
+ }
36342
+ ]
36343
+ },
36168
36344
  {
36169
36345
  "kind": "javascript-module",
36170
36346
  "path": "src/components/date-time/date-time-range/date-time-range.const.ts",