@skedulo/breeze-ui 1.26.0 → 1.27.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/dist/custom-elements.json +203 -3
- package/dist/lib/cjs/breeze-ui.js +429 -295
- package/dist/lib/es/breeze-ui.js +5531 -5336
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/components/date-time/base-date-time.types.d.ts +3 -3
- package/dist/types/components/date-time/base-date-time.types.d.ts.map +1 -1
- package/dist/types/components/date-time/date-range/date-range.d.ts +3 -3
- package/dist/types/components/date-time/date-range/date-range.d.ts.map +1 -1
- package/dist/types/components/date-time/date-range/date-range.types.d.ts +4 -3
- package/dist/types/components/date-time/date-range/date-range.types.d.ts.map +1 -1
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/index.d.ts.map +1 -1
- package/dist/types/components/skeleton.d.ts +79 -0
- package/dist/types/components/skeleton.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -2641,6 +2641,14 @@
|
|
|
2641
2641
|
"package": "./alert"
|
|
2642
2642
|
}
|
|
2643
2643
|
},
|
|
2644
|
+
{
|
|
2645
|
+
"kind": "js",
|
|
2646
|
+
"name": "*",
|
|
2647
|
+
"declaration": {
|
|
2648
|
+
"name": "*",
|
|
2649
|
+
"package": "./skeleton"
|
|
2650
|
+
}
|
|
2651
|
+
},
|
|
2644
2652
|
{
|
|
2645
2653
|
"kind": "js",
|
|
2646
2654
|
"name": "*",
|
|
@@ -19365,6 +19373,189 @@
|
|
|
19365
19373
|
}
|
|
19366
19374
|
]
|
|
19367
19375
|
},
|
|
19376
|
+
{
|
|
19377
|
+
"kind": "javascript-module",
|
|
19378
|
+
"path": "src/components/skeleton.ts",
|
|
19379
|
+
"declarations": [
|
|
19380
|
+
{
|
|
19381
|
+
"kind": "variable",
|
|
19382
|
+
"name": "SKELETON"
|
|
19383
|
+
},
|
|
19384
|
+
{
|
|
19385
|
+
"kind": "class",
|
|
19386
|
+
"description": "Skeleton component for loading placeholders.",
|
|
19387
|
+
"name": "Skeleton",
|
|
19388
|
+
"members": [
|
|
19389
|
+
{
|
|
19390
|
+
"kind": "field",
|
|
19391
|
+
"name": "variant",
|
|
19392
|
+
"type": {
|
|
19393
|
+
"text": "Variant"
|
|
19394
|
+
},
|
|
19395
|
+
"default": "'text'",
|
|
19396
|
+
"description": "Sets the skeleton variant",
|
|
19397
|
+
"attribute": "variant",
|
|
19398
|
+
"reflects": true
|
|
19399
|
+
},
|
|
19400
|
+
{
|
|
19401
|
+
"kind": "field",
|
|
19402
|
+
"name": "width",
|
|
19403
|
+
"type": {
|
|
19404
|
+
"text": "string | undefined"
|
|
19405
|
+
},
|
|
19406
|
+
"description": "Sets the width of the skeleton (CSS value)",
|
|
19407
|
+
"attribute": "width"
|
|
19408
|
+
},
|
|
19409
|
+
{
|
|
19410
|
+
"kind": "field",
|
|
19411
|
+
"name": "height",
|
|
19412
|
+
"type": {
|
|
19413
|
+
"text": "string | undefined"
|
|
19414
|
+
},
|
|
19415
|
+
"description": "Sets the height of the skeleton (CSS value)",
|
|
19416
|
+
"attribute": "height"
|
|
19417
|
+
},
|
|
19418
|
+
{
|
|
19419
|
+
"kind": "field",
|
|
19420
|
+
"name": "borderRadius",
|
|
19421
|
+
"type": {
|
|
19422
|
+
"text": "string | undefined"
|
|
19423
|
+
},
|
|
19424
|
+
"description": "Sets the border radius of the skeleton (CSS value)",
|
|
19425
|
+
"attribute": "border-radius"
|
|
19426
|
+
},
|
|
19427
|
+
{
|
|
19428
|
+
"kind": "field",
|
|
19429
|
+
"name": "rows",
|
|
19430
|
+
"type": {
|
|
19431
|
+
"text": "number"
|
|
19432
|
+
},
|
|
19433
|
+
"default": "5",
|
|
19434
|
+
"description": "Sets the number of rows for table variant (default: 5)",
|
|
19435
|
+
"attribute": "rows"
|
|
19436
|
+
},
|
|
19437
|
+
{
|
|
19438
|
+
"kind": "field",
|
|
19439
|
+
"name": "columns",
|
|
19440
|
+
"type": {
|
|
19441
|
+
"text": "number"
|
|
19442
|
+
},
|
|
19443
|
+
"default": "4",
|
|
19444
|
+
"description": "Sets the number of columns for table variant (default: 4)",
|
|
19445
|
+
"attribute": "columns"
|
|
19446
|
+
},
|
|
19447
|
+
{
|
|
19448
|
+
"kind": "field",
|
|
19449
|
+
"name": "ariaLabel",
|
|
19450
|
+
"type": {
|
|
19451
|
+
"text": "string"
|
|
19452
|
+
},
|
|
19453
|
+
"default": "'Loading...'",
|
|
19454
|
+
"description": "Sets the accessible label for screen readers",
|
|
19455
|
+
"attribute": "aria-label"
|
|
19456
|
+
},
|
|
19457
|
+
{
|
|
19458
|
+
"kind": "method",
|
|
19459
|
+
"name": "renderTableSkeleton",
|
|
19460
|
+
"privacy": "private"
|
|
19461
|
+
}
|
|
19462
|
+
],
|
|
19463
|
+
"attributes": [
|
|
19464
|
+
{
|
|
19465
|
+
"name": "variant",
|
|
19466
|
+
"type": {
|
|
19467
|
+
"text": "Variant"
|
|
19468
|
+
},
|
|
19469
|
+
"default": "'text'",
|
|
19470
|
+
"description": "Sets the skeleton variant",
|
|
19471
|
+
"fieldName": "variant"
|
|
19472
|
+
},
|
|
19473
|
+
{
|
|
19474
|
+
"name": "width",
|
|
19475
|
+
"type": {
|
|
19476
|
+
"text": "string | undefined"
|
|
19477
|
+
},
|
|
19478
|
+
"description": "Sets the width of the skeleton (CSS value)",
|
|
19479
|
+
"fieldName": "width"
|
|
19480
|
+
},
|
|
19481
|
+
{
|
|
19482
|
+
"name": "height",
|
|
19483
|
+
"type": {
|
|
19484
|
+
"text": "string | undefined"
|
|
19485
|
+
},
|
|
19486
|
+
"description": "Sets the height of the skeleton (CSS value)",
|
|
19487
|
+
"fieldName": "height"
|
|
19488
|
+
},
|
|
19489
|
+
{
|
|
19490
|
+
"name": "border-radius",
|
|
19491
|
+
"type": {
|
|
19492
|
+
"text": "string | undefined"
|
|
19493
|
+
},
|
|
19494
|
+
"description": "Sets the border radius of the skeleton (CSS value)",
|
|
19495
|
+
"fieldName": "borderRadius"
|
|
19496
|
+
},
|
|
19497
|
+
{
|
|
19498
|
+
"name": "rows",
|
|
19499
|
+
"type": {
|
|
19500
|
+
"text": "number"
|
|
19501
|
+
},
|
|
19502
|
+
"default": "5",
|
|
19503
|
+
"description": "Sets the number of rows for table variant (default: 5)",
|
|
19504
|
+
"fieldName": "rows"
|
|
19505
|
+
},
|
|
19506
|
+
{
|
|
19507
|
+
"name": "columns",
|
|
19508
|
+
"type": {
|
|
19509
|
+
"text": "number"
|
|
19510
|
+
},
|
|
19511
|
+
"default": "4",
|
|
19512
|
+
"description": "Sets the number of columns for table variant (default: 4)",
|
|
19513
|
+
"fieldName": "columns"
|
|
19514
|
+
},
|
|
19515
|
+
{
|
|
19516
|
+
"name": "aria-label",
|
|
19517
|
+
"type": {
|
|
19518
|
+
"text": "string"
|
|
19519
|
+
},
|
|
19520
|
+
"default": "'Loading...'",
|
|
19521
|
+
"description": "Sets the accessible label for screen readers",
|
|
19522
|
+
"fieldName": "ariaLabel"
|
|
19523
|
+
}
|
|
19524
|
+
],
|
|
19525
|
+
"superclass": {
|
|
19526
|
+
"name": "LitElement",
|
|
19527
|
+
"package": "lit"
|
|
19528
|
+
},
|
|
19529
|
+
"tagName": "brz-skeleton",
|
|
19530
|
+
"customElement": true
|
|
19531
|
+
}
|
|
19532
|
+
],
|
|
19533
|
+
"exports": [
|
|
19534
|
+
{
|
|
19535
|
+
"kind": "js",
|
|
19536
|
+
"name": "SKELETON",
|
|
19537
|
+
"declaration": {
|
|
19538
|
+
"name": "SKELETON",
|
|
19539
|
+
"module": "src/components/skeleton.ts"
|
|
19540
|
+
}
|
|
19541
|
+
},
|
|
19542
|
+
{
|
|
19543
|
+
"kind": "js",
|
|
19544
|
+
"name": "Skeleton",
|
|
19545
|
+
"declaration": {
|
|
19546
|
+
"name": "Skeleton",
|
|
19547
|
+
"module": "src/components/skeleton.ts"
|
|
19548
|
+
}
|
|
19549
|
+
},
|
|
19550
|
+
{
|
|
19551
|
+
"kind": "custom-element-definition",
|
|
19552
|
+
"declaration": {
|
|
19553
|
+
"name": "Skeleton",
|
|
19554
|
+
"module": "src/components/skeleton.ts"
|
|
19555
|
+
}
|
|
19556
|
+
}
|
|
19557
|
+
]
|
|
19558
|
+
},
|
|
19368
19559
|
{
|
|
19369
19560
|
"kind": "javascript-module",
|
|
19370
19561
|
"path": "src/components/tooltip.ts",
|
|
@@ -36224,7 +36415,7 @@
|
|
|
36224
36415
|
"kind": "field",
|
|
36225
36416
|
"name": "dateFormat",
|
|
36226
36417
|
"type": {
|
|
36227
|
-
"text": "
|
|
36418
|
+
"text": "DateFormat"
|
|
36228
36419
|
},
|
|
36229
36420
|
"default": "'MonthDayYear'",
|
|
36230
36421
|
"description": "Date format preference ('MonthDayYear' or 'DayMonthYear')",
|
|
@@ -36262,7 +36453,7 @@
|
|
|
36262
36453
|
{
|
|
36263
36454
|
"name": "date-format",
|
|
36264
36455
|
"type": {
|
|
36265
|
-
"text": "
|
|
36456
|
+
"text": "DateFormat"
|
|
36266
36457
|
},
|
|
36267
36458
|
"default": "'MonthDayYear'",
|
|
36268
36459
|
"description": "Date format preference ('MonthDayYear' or 'DayMonthYear')",
|
|
@@ -36299,7 +36490,16 @@
|
|
|
36299
36490
|
"kind": "javascript-module",
|
|
36300
36491
|
"path": "src/components/date-time/date-range/date-range.types.ts",
|
|
36301
36492
|
"declarations": [],
|
|
36302
|
-
"exports": [
|
|
36493
|
+
"exports": [
|
|
36494
|
+
{
|
|
36495
|
+
"kind": "js",
|
|
36496
|
+
"name": "DateFormat",
|
|
36497
|
+
"declaration": {
|
|
36498
|
+
"name": "DateFormat",
|
|
36499
|
+
"module": "src/components/date-time/date-range/date-range.types.ts"
|
|
36500
|
+
}
|
|
36501
|
+
}
|
|
36502
|
+
]
|
|
36303
36503
|
},
|
|
36304
36504
|
{
|
|
36305
36505
|
"kind": "javascript-module",
|