@kubex/zinc 1.1.39 → 1.1.41
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 +321 -20
- package/dist/vscode.html-custom-data.json +38 -4
- package/dist/web-types.json +100 -6
- package/dist/zn.d.ts +236 -173
- package/dist/zn.min.css +1 -1
- package/dist/zn.min.js +541 -521
- package/docs/_utilities/code-previews.cjs +6 -2
- package/docs/pages/components/datepicker.md +10 -1
- package/docs/pages/components/editor.md +17 -0
- package/docs/pages/components/style.md +46 -0
- package/package.json +1 -1
- package/scss/_root.scss +21 -1
- package/scss/air-datapicker.scss +50 -0
- package/scss/boot.scss +1 -48
- package/src/components/data-table/data-table.component.ts +152 -73
- package/src/components/data-table/data-table.scss +6 -0
- package/src/components/data-table/data-table.test.ts +15 -0
- package/src/components/data-table-search/data-table-search.component.ts +13 -1
- package/src/components/datepicker/datepicker.component.ts +66 -12
- package/src/components/datepicker/datepicker.scss +1 -0
- package/src/components/editor/editor.component.ts +51 -6
- package/src/components/editor/editor.test.ts +62 -1
- package/src/components/query-builder/query-builder.component.ts +62 -21
- package/src/components/query-builder/query-builder.scss +4 -0
- package/src/components/style/style.component.ts +43 -4
- package/src/components/style/style.test.ts +71 -0
- package/src/utilities/query.test.ts +63 -0
- package/src/utilities/query.ts +27 -0
|
@@ -7483,10 +7483,10 @@
|
|
|
7483
7483
|
"kind": "field",
|
|
7484
7484
|
"name": "data",
|
|
7485
7485
|
"type": {
|
|
7486
|
-
"text": "
|
|
7486
|
+
"text": "Row[] | Row"
|
|
7487
7487
|
},
|
|
7488
|
-
"
|
|
7489
|
-
"
|
|
7488
|
+
"default": "[]",
|
|
7489
|
+
"attribute": "data"
|
|
7490
7490
|
},
|
|
7491
7491
|
{
|
|
7492
7492
|
"kind": "field",
|
|
@@ -7558,6 +7558,14 @@
|
|
|
7558
7558
|
"default": "{}",
|
|
7559
7559
|
"attribute": "headers"
|
|
7560
7560
|
},
|
|
7561
|
+
{
|
|
7562
|
+
"kind": "field",
|
|
7563
|
+
"name": "displayTemplates",
|
|
7564
|
+
"type": {
|
|
7565
|
+
"text": "Record<string, DisplayTemplate>"
|
|
7566
|
+
},
|
|
7567
|
+
"default": "{}"
|
|
7568
|
+
},
|
|
7561
7569
|
{
|
|
7562
7570
|
"kind": "field",
|
|
7563
7571
|
"name": "hiddenHeaders",
|
|
@@ -7689,6 +7697,15 @@
|
|
|
7689
7697
|
"default": "''",
|
|
7690
7698
|
"attribute": "groups"
|
|
7691
7699
|
},
|
|
7700
|
+
{
|
|
7701
|
+
"kind": "field",
|
|
7702
|
+
"name": "itemsPerPage",
|
|
7703
|
+
"type": {
|
|
7704
|
+
"text": "number"
|
|
7705
|
+
},
|
|
7706
|
+
"default": "10",
|
|
7707
|
+
"attribute": "per-page-size"
|
|
7708
|
+
},
|
|
7692
7709
|
{
|
|
7693
7710
|
"kind": "field",
|
|
7694
7711
|
"name": "selectAllButton",
|
|
@@ -7721,15 +7738,6 @@
|
|
|
7721
7738
|
"readonly": true,
|
|
7722
7739
|
"default": "new ResizeController(this, { target: null, callback: () => { if (this.tableContainer) { this.tableContainer.scrollIntoView({behavior: 'smooth', block: 'nearest'}); } }, })"
|
|
7723
7740
|
},
|
|
7724
|
-
{
|
|
7725
|
-
"kind": "field",
|
|
7726
|
-
"name": "itemsPerPage",
|
|
7727
|
-
"type": {
|
|
7728
|
-
"text": "number"
|
|
7729
|
-
},
|
|
7730
|
-
"privacy": "private",
|
|
7731
|
-
"default": "10"
|
|
7732
|
-
},
|
|
7733
7741
|
{
|
|
7734
7742
|
"kind": "field",
|
|
7735
7743
|
"name": "page",
|
|
@@ -7829,6 +7837,15 @@
|
|
|
7829
7837
|
},
|
|
7830
7838
|
"privacy": "private"
|
|
7831
7839
|
},
|
|
7840
|
+
{
|
|
7841
|
+
"kind": "field",
|
|
7842
|
+
"name": "_formatTemplates",
|
|
7843
|
+
"type": {
|
|
7844
|
+
"text": "Record<string, DisplayTemplate>"
|
|
7845
|
+
},
|
|
7846
|
+
"privacy": "private",
|
|
7847
|
+
"default": "{ dateTime: ((cell) => { const t = cell.text || ''; return html` <div class=\"table__collum--datetime\"> <span><strong>${t.slice(0, 10)}</strong></span> <zn-style size=\"s\" muted>${t.slice(11)}</zn-style> </div>` }) satisfies DisplayTemplate }"
|
|
7848
|
+
},
|
|
7832
7849
|
{
|
|
7833
7850
|
"kind": "field",
|
|
7834
7851
|
"name": "requestParams",
|
|
@@ -7841,6 +7858,24 @@
|
|
|
7841
7858
|
"kind": "method",
|
|
7842
7859
|
"name": "refresh"
|
|
7843
7860
|
},
|
|
7861
|
+
{
|
|
7862
|
+
"kind": "method",
|
|
7863
|
+
"name": "getTemplate",
|
|
7864
|
+
"privacy": "private",
|
|
7865
|
+
"return": {
|
|
7866
|
+
"type": {
|
|
7867
|
+
"text": "DisplayTemplate | undefined"
|
|
7868
|
+
}
|
|
7869
|
+
},
|
|
7870
|
+
"parameters": [
|
|
7871
|
+
{
|
|
7872
|
+
"name": "name",
|
|
7873
|
+
"type": {
|
|
7874
|
+
"text": "string"
|
|
7875
|
+
}
|
|
7876
|
+
}
|
|
7877
|
+
]
|
|
7878
|
+
},
|
|
7844
7879
|
{
|
|
7845
7880
|
"kind": "field",
|
|
7846
7881
|
"name": "filterChangeListener"
|
|
@@ -8016,12 +8051,31 @@
|
|
|
8016
8051
|
{
|
|
8017
8052
|
"kind": "method",
|
|
8018
8053
|
"name": "renderCell",
|
|
8054
|
+
"return": {
|
|
8055
|
+
"type": {
|
|
8056
|
+
"text": "TemplateResult | ZincElement"
|
|
8057
|
+
}
|
|
8058
|
+
},
|
|
8019
8059
|
"parameters": [
|
|
8020
8060
|
{
|
|
8021
8061
|
"name": "data",
|
|
8022
8062
|
"type": {
|
|
8023
8063
|
"text": "Cell"
|
|
8024
8064
|
}
|
|
8065
|
+
},
|
|
8066
|
+
{
|
|
8067
|
+
"name": "row",
|
|
8068
|
+
"optional": true,
|
|
8069
|
+
"type": {
|
|
8070
|
+
"text": "Row"
|
|
8071
|
+
}
|
|
8072
|
+
},
|
|
8073
|
+
{
|
|
8074
|
+
"name": "header",
|
|
8075
|
+
"optional": true,
|
|
8076
|
+
"type": {
|
|
8077
|
+
"text": "HeaderConfig"
|
|
8078
|
+
}
|
|
8025
8079
|
}
|
|
8026
8080
|
]
|
|
8027
8081
|
},
|
|
@@ -8080,6 +8134,12 @@
|
|
|
8080
8134
|
"type": {
|
|
8081
8135
|
"text": "Cell"
|
|
8082
8136
|
}
|
|
8137
|
+
},
|
|
8138
|
+
{
|
|
8139
|
+
"name": "row",
|
|
8140
|
+
"type": {
|
|
8141
|
+
"text": "Row"
|
|
8142
|
+
}
|
|
8083
8143
|
}
|
|
8084
8144
|
]
|
|
8085
8145
|
},
|
|
@@ -8295,8 +8355,9 @@
|
|
|
8295
8355
|
{
|
|
8296
8356
|
"name": "data",
|
|
8297
8357
|
"type": {
|
|
8298
|
-
"text": "
|
|
8358
|
+
"text": "Row[] | Row"
|
|
8299
8359
|
},
|
|
8360
|
+
"default": "[]",
|
|
8300
8361
|
"fieldName": "data"
|
|
8301
8362
|
},
|
|
8302
8363
|
{
|
|
@@ -8476,6 +8537,14 @@
|
|
|
8476
8537
|
},
|
|
8477
8538
|
"default": "''",
|
|
8478
8539
|
"fieldName": "groups"
|
|
8540
|
+
},
|
|
8541
|
+
{
|
|
8542
|
+
"name": "per-page-size",
|
|
8543
|
+
"type": {
|
|
8544
|
+
"text": "number"
|
|
8545
|
+
},
|
|
8546
|
+
"default": "DEFAULT_PER_PAGE",
|
|
8547
|
+
"fieldName": "itemsPerPage"
|
|
8479
8548
|
}
|
|
8480
8549
|
],
|
|
8481
8550
|
"superclass": {
|
|
@@ -9359,6 +9428,45 @@
|
|
|
9359
9428
|
"description": "Date format using AirDatepicker tokens. Default: 'dd/MM/yyyy' Supported formats: - dd/MM/yyyy (31/12/2024) - Default - MM/dd/yyyy (12/31/2024) - yyyy-MM-dd (2024-12-31) - dd-MM-yyyy (31-12-2024) - yyyy/MM/dd (2024/12/31)",
|
|
9360
9429
|
"attribute": "format"
|
|
9361
9430
|
},
|
|
9431
|
+
{
|
|
9432
|
+
"kind": "field",
|
|
9433
|
+
"name": "timePicker",
|
|
9434
|
+
"type": {
|
|
9435
|
+
"text": "boolean | undefined"
|
|
9436
|
+
},
|
|
9437
|
+
"default": "false",
|
|
9438
|
+
"description": "Display time selector. *",
|
|
9439
|
+
"attribute": "time-picker",
|
|
9440
|
+
"reflects": true
|
|
9441
|
+
},
|
|
9442
|
+
{
|
|
9443
|
+
"kind": "field",
|
|
9444
|
+
"name": "onlyTimepicker",
|
|
9445
|
+
"type": {
|
|
9446
|
+
"text": "boolean | undefined"
|
|
9447
|
+
},
|
|
9448
|
+
"default": "false",
|
|
9449
|
+
"description": "Display only time selector, without date. *",
|
|
9450
|
+
"attribute": "only-time"
|
|
9451
|
+
},
|
|
9452
|
+
{
|
|
9453
|
+
"kind": "field",
|
|
9454
|
+
"name": "timeFormat",
|
|
9455
|
+
"type": {
|
|
9456
|
+
"text": "string | undefined"
|
|
9457
|
+
},
|
|
9458
|
+
"default": "\"hh:mm AA\"",
|
|
9459
|
+
"description": "Time format for display and input selector. Uses AirDatepicker format tokens.\nDefault : hh:mm AA\n\nPossible symbols:\nh — hours in 12-hour mode\nhh — hours in 12-hour mode with leading zero\nH — hours in 24-hour mode\nHH — hours in 24-hour mode with leading zero\nm — minutes\nmm — minutes with leading zero\naa — day period lower case\nAA — day period upper case",
|
|
9460
|
+
"attribute": "format-time"
|
|
9461
|
+
},
|
|
9462
|
+
{
|
|
9463
|
+
"kind": "field",
|
|
9464
|
+
"name": "container",
|
|
9465
|
+
"type": {
|
|
9466
|
+
"text": "string | HTMLElement | undefined"
|
|
9467
|
+
},
|
|
9468
|
+
"attribute": "container"
|
|
9469
|
+
},
|
|
9362
9470
|
{
|
|
9363
9471
|
"kind": "field",
|
|
9364
9472
|
"name": "_instance",
|
|
@@ -9367,6 +9475,14 @@
|
|
|
9367
9475
|
},
|
|
9368
9476
|
"privacy": "private"
|
|
9369
9477
|
},
|
|
9478
|
+
{
|
|
9479
|
+
"kind": "field",
|
|
9480
|
+
"name": "timestamp",
|
|
9481
|
+
"type": {
|
|
9482
|
+
"text": "number"
|
|
9483
|
+
},
|
|
9484
|
+
"readonly": true
|
|
9485
|
+
},
|
|
9370
9486
|
{
|
|
9371
9487
|
"kind": "field",
|
|
9372
9488
|
"name": "validity",
|
|
@@ -9861,6 +9977,40 @@
|
|
|
9861
9977
|
"default": "'MM/dd/yyyy'",
|
|
9862
9978
|
"description": "Date format using AirDatepicker tokens. Default: 'dd/MM/yyyy' Supported formats: - dd/MM/yyyy (31/12/2024) - Default - MM/dd/yyyy (12/31/2024) - yyyy-MM-dd (2024-12-31) - dd-MM-yyyy (31-12-2024) - yyyy/MM/dd (2024/12/31)",
|
|
9863
9979
|
"fieldName": "format"
|
|
9980
|
+
},
|
|
9981
|
+
{
|
|
9982
|
+
"name": "time-picker",
|
|
9983
|
+
"type": {
|
|
9984
|
+
"text": "boolean | undefined"
|
|
9985
|
+
},
|
|
9986
|
+
"default": "false",
|
|
9987
|
+
"description": "Display time selector. *",
|
|
9988
|
+
"fieldName": "timePicker"
|
|
9989
|
+
},
|
|
9990
|
+
{
|
|
9991
|
+
"name": "only-time",
|
|
9992
|
+
"type": {
|
|
9993
|
+
"text": "boolean | undefined"
|
|
9994
|
+
},
|
|
9995
|
+
"default": "false",
|
|
9996
|
+
"description": "Display only time selector, without date. *",
|
|
9997
|
+
"fieldName": "onlyTimepicker"
|
|
9998
|
+
},
|
|
9999
|
+
{
|
|
10000
|
+
"name": "format-time",
|
|
10001
|
+
"type": {
|
|
10002
|
+
"text": "string | undefined"
|
|
10003
|
+
},
|
|
10004
|
+
"default": "\"hh:mm AA\"",
|
|
10005
|
+
"description": "Time format for display and input selector. Uses AirDatepicker format tokens.\nDefault : hh:mm AA\n\nPossible symbols:\nh — hours in 12-hour mode\nhh — hours in 12-hour mode with leading zero\nH — hours in 24-hour mode\nHH — hours in 24-hour mode with leading zero\nm — minutes\nmm — minutes with leading zero\naa — day period lower case\nAA — day period upper case",
|
|
10006
|
+
"fieldName": "timeFormat"
|
|
10007
|
+
},
|
|
10008
|
+
{
|
|
10009
|
+
"name": "container",
|
|
10010
|
+
"type": {
|
|
10011
|
+
"text": "string | HTMLElement | undefined"
|
|
10012
|
+
},
|
|
10013
|
+
"fieldName": "container"
|
|
9864
10014
|
}
|
|
9865
10015
|
],
|
|
9866
10016
|
"superclass": {
|
|
@@ -11193,6 +11343,46 @@
|
|
|
11193
11343
|
"default": "''",
|
|
11194
11344
|
"attribute": "ai-path"
|
|
11195
11345
|
},
|
|
11346
|
+
{
|
|
11347
|
+
"kind": "field",
|
|
11348
|
+
"name": "storeKey",
|
|
11349
|
+
"type": {
|
|
11350
|
+
"text": "string"
|
|
11351
|
+
},
|
|
11352
|
+
"default": "\"\"",
|
|
11353
|
+
"description": "Caches unsent content while typing and restores it when the editor next loads,\nso agent replies in tickets/chats survive reloads and navigation. Use a key\nunique to the conversation (e.g. the ticket ID). The cache is cleared on submit.",
|
|
11354
|
+
"attribute": "store-key",
|
|
11355
|
+
"reflects": true
|
|
11356
|
+
},
|
|
11357
|
+
{
|
|
11358
|
+
"kind": "field",
|
|
11359
|
+
"name": "storeTtl",
|
|
11360
|
+
"type": {
|
|
11361
|
+
"text": "number"
|
|
11362
|
+
},
|
|
11363
|
+
"default": "86400",
|
|
11364
|
+
"description": "Cached-content expiry in seconds. Defaults to 1 day.",
|
|
11365
|
+
"attribute": "store-ttl",
|
|
11366
|
+
"reflects": true
|
|
11367
|
+
},
|
|
11368
|
+
{
|
|
11369
|
+
"kind": "field",
|
|
11370
|
+
"name": "localStorage",
|
|
11371
|
+
"type": {
|
|
11372
|
+
"text": "boolean"
|
|
11373
|
+
},
|
|
11374
|
+
"description": "Cache to localStorage instead of sessionStorage, persisting across tabs and browser restarts.",
|
|
11375
|
+
"attribute": "local-storage",
|
|
11376
|
+
"reflects": true
|
|
11377
|
+
},
|
|
11378
|
+
{
|
|
11379
|
+
"kind": "field",
|
|
11380
|
+
"name": "_store",
|
|
11381
|
+
"type": {
|
|
11382
|
+
"text": "Store"
|
|
11383
|
+
},
|
|
11384
|
+
"privacy": "protected"
|
|
11385
|
+
},
|
|
11196
11386
|
{
|
|
11197
11387
|
"kind": "field",
|
|
11198
11388
|
"name": "quillElement",
|
|
@@ -11284,6 +11474,29 @@
|
|
|
11284
11474
|
"name": "_handleTextChange",
|
|
11285
11475
|
"privacy": "private"
|
|
11286
11476
|
},
|
|
11477
|
+
{
|
|
11478
|
+
"kind": "method",
|
|
11479
|
+
"name": "_isEmpty",
|
|
11480
|
+
"privacy": "private",
|
|
11481
|
+
"parameters": [
|
|
11482
|
+
{
|
|
11483
|
+
"name": "value",
|
|
11484
|
+
"type": {
|
|
11485
|
+
"text": "string"
|
|
11486
|
+
}
|
|
11487
|
+
}
|
|
11488
|
+
]
|
|
11489
|
+
},
|
|
11490
|
+
{
|
|
11491
|
+
"kind": "method",
|
|
11492
|
+
"name": "_cacheContent",
|
|
11493
|
+
"privacy": "private"
|
|
11494
|
+
},
|
|
11495
|
+
{
|
|
11496
|
+
"kind": "method",
|
|
11497
|
+
"name": "_clearCachedContent",
|
|
11498
|
+
"privacy": "private"
|
|
11499
|
+
},
|
|
11287
11500
|
{
|
|
11288
11501
|
"kind": "method",
|
|
11289
11502
|
"name": "_getQuillKeyboardBindings",
|
|
@@ -11458,6 +11671,32 @@
|
|
|
11458
11671
|
},
|
|
11459
11672
|
"default": "''",
|
|
11460
11673
|
"fieldName": "aiPath"
|
|
11674
|
+
},
|
|
11675
|
+
{
|
|
11676
|
+
"name": "store-key",
|
|
11677
|
+
"type": {
|
|
11678
|
+
"text": "string"
|
|
11679
|
+
},
|
|
11680
|
+
"default": "\"\"",
|
|
11681
|
+
"description": "Caches unsent content while typing and restores it when the editor next loads,\nso agent replies in tickets/chats survive reloads and navigation. Use a key\nunique to the conversation (e.g. the ticket ID). The cache is cleared on submit.",
|
|
11682
|
+
"fieldName": "storeKey"
|
|
11683
|
+
},
|
|
11684
|
+
{
|
|
11685
|
+
"name": "store-ttl",
|
|
11686
|
+
"type": {
|
|
11687
|
+
"text": "number"
|
|
11688
|
+
},
|
|
11689
|
+
"default": "86400",
|
|
11690
|
+
"description": "Cached-content expiry in seconds. Defaults to 1 day.",
|
|
11691
|
+
"fieldName": "storeTtl"
|
|
11692
|
+
},
|
|
11693
|
+
{
|
|
11694
|
+
"name": "local-storage",
|
|
11695
|
+
"type": {
|
|
11696
|
+
"text": "boolean"
|
|
11697
|
+
},
|
|
11698
|
+
"description": "Cache to localStorage instead of sessionStorage, persisting across tabs and browser restarts.",
|
|
11699
|
+
"fieldName": "localStorage"
|
|
11461
11700
|
}
|
|
11462
11701
|
],
|
|
11463
11702
|
"superclass": {
|
|
@@ -28610,7 +28849,7 @@
|
|
|
28610
28849
|
"privacy": "private",
|
|
28611
28850
|
"return": {
|
|
28612
28851
|
"type": {
|
|
28613
|
-
"text": "
|
|
28852
|
+
"text": "ZnDatepicker | null"
|
|
28614
28853
|
}
|
|
28615
28854
|
},
|
|
28616
28855
|
"parameters": [
|
|
@@ -28619,6 +28858,19 @@
|
|
|
28619
28858
|
"type": {
|
|
28620
28859
|
"text": "string"
|
|
28621
28860
|
}
|
|
28861
|
+
},
|
|
28862
|
+
{
|
|
28863
|
+
"name": "hasTime",
|
|
28864
|
+
"type": {
|
|
28865
|
+
"text": "boolean"
|
|
28866
|
+
}
|
|
28867
|
+
},
|
|
28868
|
+
{
|
|
28869
|
+
"name": "submitFormat",
|
|
28870
|
+
"default": "'legacy'",
|
|
28871
|
+
"type": {
|
|
28872
|
+
"text": "QueryBuilderDateSubmitFormat"
|
|
28873
|
+
}
|
|
28622
28874
|
}
|
|
28623
28875
|
]
|
|
28624
28876
|
},
|
|
@@ -28703,7 +28955,14 @@
|
|
|
28703
28955
|
{
|
|
28704
28956
|
"name": "event",
|
|
28705
28957
|
"type": {
|
|
28706
|
-
"text": "Event | { target:
|
|
28958
|
+
"text": "Event | { target: ZnDatepicker | HTMLDivElement }"
|
|
28959
|
+
}
|
|
28960
|
+
},
|
|
28961
|
+
{
|
|
28962
|
+
"name": "submitFormat",
|
|
28963
|
+
"default": "'legacy'",
|
|
28964
|
+
"type": {
|
|
28965
|
+
"text": "QueryBuilderDateSubmitFormat"
|
|
28707
28966
|
}
|
|
28708
28967
|
}
|
|
28709
28968
|
]
|
|
@@ -34989,11 +35248,20 @@
|
|
|
34989
35248
|
"kind": "field",
|
|
34990
35249
|
"name": "border",
|
|
34991
35250
|
"type": {
|
|
34992
|
-
"text": "
|
|
35251
|
+
"text": "string"
|
|
34993
35252
|
},
|
|
34994
|
-
"default": "
|
|
35253
|
+
"default": "''",
|
|
34995
35254
|
"attribute": "border"
|
|
34996
35255
|
},
|
|
35256
|
+
{
|
|
35257
|
+
"kind": "field",
|
|
35258
|
+
"name": "size",
|
|
35259
|
+
"type": {
|
|
35260
|
+
"text": "string"
|
|
35261
|
+
},
|
|
35262
|
+
"default": "''",
|
|
35263
|
+
"attribute": "size"
|
|
35264
|
+
},
|
|
34997
35265
|
{
|
|
34998
35266
|
"kind": "field",
|
|
34999
35267
|
"name": "error",
|
|
@@ -35111,6 +35379,15 @@
|
|
|
35111
35379
|
"default": "''",
|
|
35112
35380
|
"attribute": "margin"
|
|
35113
35381
|
},
|
|
35382
|
+
{
|
|
35383
|
+
"kind": "field",
|
|
35384
|
+
"name": "muted",
|
|
35385
|
+
"type": {
|
|
35386
|
+
"text": "boolean"
|
|
35387
|
+
},
|
|
35388
|
+
"default": "false",
|
|
35389
|
+
"attribute": "muted"
|
|
35390
|
+
},
|
|
35114
35391
|
{
|
|
35115
35392
|
"kind": "field",
|
|
35116
35393
|
"name": "gutter",
|
|
@@ -35142,11 +35419,19 @@
|
|
|
35142
35419
|
{
|
|
35143
35420
|
"name": "border",
|
|
35144
35421
|
"type": {
|
|
35145
|
-
"text": "
|
|
35422
|
+
"text": "string"
|
|
35146
35423
|
},
|
|
35147
|
-
"default": "
|
|
35424
|
+
"default": "''",
|
|
35148
35425
|
"fieldName": "border"
|
|
35149
35426
|
},
|
|
35427
|
+
{
|
|
35428
|
+
"name": "size",
|
|
35429
|
+
"type": {
|
|
35430
|
+
"text": "string"
|
|
35431
|
+
},
|
|
35432
|
+
"default": "''",
|
|
35433
|
+
"fieldName": "size"
|
|
35434
|
+
},
|
|
35150
35435
|
{
|
|
35151
35436
|
"name": "error",
|
|
35152
35437
|
"type": {
|
|
@@ -35251,6 +35536,14 @@
|
|
|
35251
35536
|
"default": "''",
|
|
35252
35537
|
"fieldName": "margin"
|
|
35253
35538
|
},
|
|
35539
|
+
{
|
|
35540
|
+
"name": "muted",
|
|
35541
|
+
"type": {
|
|
35542
|
+
"text": "boolean"
|
|
35543
|
+
},
|
|
35544
|
+
"default": "false",
|
|
35545
|
+
"fieldName": "muted"
|
|
35546
|
+
},
|
|
35254
35547
|
{
|
|
35255
35548
|
"name": "gutter",
|
|
35256
35549
|
"type": {
|
|
@@ -35285,6 +35578,14 @@
|
|
|
35285
35578
|
"name": "ZnStyle",
|
|
35286
35579
|
"module": "components/style/style.js"
|
|
35287
35580
|
}
|
|
35581
|
+
},
|
|
35582
|
+
{
|
|
35583
|
+
"kind": "custom-element-definition",
|
|
35584
|
+
"name": "zn-style",
|
|
35585
|
+
"declaration": {
|
|
35586
|
+
"name": "ZnStyle",
|
|
35587
|
+
"module": "components/style/style.js"
|
|
35588
|
+
}
|
|
35288
35589
|
}
|
|
35289
35590
|
]
|
|
35290
35591
|
},
|
|
@@ -39874,7 +40175,7 @@
|
|
|
39874
40175
|
"package": {
|
|
39875
40176
|
"name": "@kubex/zinc",
|
|
39876
40177
|
"description": "A collection of web components for building web applications based off of @shoelace-style/Shoelace",
|
|
39877
|
-
"version": "1.1.
|
|
40178
|
+
"version": "1.1.41",
|
|
39878
40179
|
"author": "",
|
|
39879
40180
|
"license": "MIT"
|
|
39880
40181
|
}
|
|
@@ -1028,7 +1028,7 @@
|
|
|
1028
1028
|
"description": "Short summary of the component's intended use.\n---\n\n\n### **Slots:**\n - _default_ - The default slot.\n- **search** - Slot for search component.\n- **sort** - Slot for sort component.\n- **filter** - Slot for filter component.\n- **filter-top** - Slot for top-level filter component.\n- **delete-action** - Slot for delete action button.\n- **modify-action** - Slot for modify action button.\n- **create-action** - Slot for create action button.\n- **inputs** - Slot for additional input controls.\n- **empty-state** - Slot for custom empty state.\n\n### **CSS Properties:**\n - **--example** - An example CSS custom property. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
|
|
1029
1029
|
"attributes": [
|
|
1030
1030
|
{ "name": "data-uri", "values": [] },
|
|
1031
|
-
{ "name": "data", "values": [] },
|
|
1031
|
+
{ "name": "data", "values": [{ "name": "Row[]" }, { "name": "Row" }] },
|
|
1032
1032
|
{ "name": "sort-column", "values": [] },
|
|
1033
1033
|
{ "name": "sort-direction", "values": [] },
|
|
1034
1034
|
{ "name": "local-sort", "values": [] },
|
|
@@ -1054,7 +1054,8 @@
|
|
|
1054
1054
|
{ "name": "method", "values": [{ "name": "GET" }, { "name": "POST" }] },
|
|
1055
1055
|
{ "name": "no-initial-load", "values": [] },
|
|
1056
1056
|
{ "name": "group-by", "values": [] },
|
|
1057
|
-
{ "name": "groups", "values": [] }
|
|
1057
|
+
{ "name": "groups", "values": [] },
|
|
1058
|
+
{ "name": "per-page-size", "values": [] }
|
|
1058
1059
|
],
|
|
1059
1060
|
"references": [
|
|
1060
1061
|
{
|
|
@@ -1230,7 +1231,23 @@
|
|
|
1230
1231
|
"name": "format",
|
|
1231
1232
|
"description": "Date format using AirDatepicker tokens. Default: 'dd/MM/yyyy' Supported formats: - dd/MM/yyyy (31/12/2024) - Default - MM/dd/yyyy (12/31/2024) - yyyy-MM-dd (2024-12-31) - dd-MM-yyyy (31-12-2024) - yyyy/MM/dd (2024/12/31)",
|
|
1232
1233
|
"values": []
|
|
1233
|
-
}
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"name": "time-picker",
|
|
1237
|
+
"description": "Display time selector. *",
|
|
1238
|
+
"values": []
|
|
1239
|
+
},
|
|
1240
|
+
{
|
|
1241
|
+
"name": "only-time",
|
|
1242
|
+
"description": "Display only time selector, without date. *",
|
|
1243
|
+
"values": []
|
|
1244
|
+
},
|
|
1245
|
+
{
|
|
1246
|
+
"name": "format-time",
|
|
1247
|
+
"description": "Time format for display and input selector. Uses AirDatepicker format tokens.\nDefault : hh:mm AA\n\nPossible symbols:\nh — hours in 12-hour mode\nhh — hours in 12-hour mode with leading zero\nH — hours in 24-hour mode\nHH — hours in 24-hour mode with leading zero\nm — minutes\nmm — minutes with leading zero\naa — day period lower case\nAA — day period upper case",
|
|
1248
|
+
"values": []
|
|
1249
|
+
},
|
|
1250
|
+
{ "name": "container", "values": [{ "name": "HTMLElement" }] }
|
|
1234
1251
|
],
|
|
1235
1252
|
"references": [
|
|
1236
1253
|
{
|
|
@@ -1412,7 +1429,22 @@
|
|
|
1412
1429
|
{ "name": "emojis", "values": [] },
|
|
1413
1430
|
{ "name": "code", "values": [] },
|
|
1414
1431
|
{ "name": "ai", "values": [] },
|
|
1415
|
-
{ "name": "ai-path", "values": [] }
|
|
1432
|
+
{ "name": "ai-path", "values": [] },
|
|
1433
|
+
{
|
|
1434
|
+
"name": "store-key",
|
|
1435
|
+
"description": "Caches unsent content while typing and restores it when the editor next loads,\nso agent replies in tickets/chats survive reloads and navigation. Use a key\nunique to the conversation (e.g. the ticket ID). The cache is cleared on submit.",
|
|
1436
|
+
"values": []
|
|
1437
|
+
},
|
|
1438
|
+
{
|
|
1439
|
+
"name": "store-ttl",
|
|
1440
|
+
"description": "Cached-content expiry in seconds. Defaults to 1 day.",
|
|
1441
|
+
"values": []
|
|
1442
|
+
},
|
|
1443
|
+
{
|
|
1444
|
+
"name": "local-storage",
|
|
1445
|
+
"description": "Cache to localStorage instead of sessionStorage, persisting across tabs and browser restarts.",
|
|
1446
|
+
"values": []
|
|
1447
|
+
}
|
|
1416
1448
|
],
|
|
1417
1449
|
"references": [
|
|
1418
1450
|
{
|
|
@@ -3618,6 +3650,7 @@
|
|
|
3618
3650
|
"attributes": [
|
|
3619
3651
|
{ "name": "color", "values": [] },
|
|
3620
3652
|
{ "name": "border", "values": [] },
|
|
3653
|
+
{ "name": "size", "values": [] },
|
|
3621
3654
|
{ "name": "error", "values": [] },
|
|
3622
3655
|
{ "name": "success", "values": [] },
|
|
3623
3656
|
{ "name": "info", "values": [] },
|
|
@@ -3631,6 +3664,7 @@
|
|
|
3631
3664
|
{ "name": "height", "values": [] },
|
|
3632
3665
|
{ "name": "pad", "values": [] },
|
|
3633
3666
|
{ "name": "margin", "values": [] },
|
|
3667
|
+
{ "name": "muted", "values": [] },
|
|
3634
3668
|
{ "name": "gutter", "values": [] },
|
|
3635
3669
|
{ "name": "a-margin", "values": [] }
|
|
3636
3670
|
],
|