@teipublisher/pb-components 2.26.0-next-3.4 → 2.26.0-next-3.6
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/CHANGELOG.md +24 -0
- package/dist/demo/components.css +14 -0
- package/dist/demo/pb-search.html +7 -4
- package/dist/demo/pb-search3.html +1 -1
- package/dist/demo/pb-search4.html +2 -2
- package/dist/pb-components-bundle.js +52 -67
- package/dist/pb-elements.json +15 -4
- package/dist/pb-odd-editor.js +118 -48
- package/dist/{vaadin-element-mixin-87f431bd.js → vaadin-element-mixin-15b1be74.js} +26 -96
- package/package.json +1 -1
- package/pb-elements.json +15 -4
- package/src/pb-ajax.js +12 -29
- package/src/pb-download.js +0 -1
- package/src/pb-message.js +11 -1
- package/src/pb-search.js +91 -74
- package/src/pb-toggle-feature.js +20 -18
package/dist/pb-elements.json
CHANGED
|
@@ -7342,6 +7342,11 @@
|
|
|
7342
7342
|
"description": "type of message. Can be either 'message' or 'confirm'. In case of confirm the buttons 'yes' and 'no'\nwill be shown and the dialog becomes modal.",
|
|
7343
7343
|
"type": "string",
|
|
7344
7344
|
"default": "\"message\""
|
|
7345
|
+
},
|
|
7346
|
+
{
|
|
7347
|
+
"name": "open",
|
|
7348
|
+
"type": "boolean",
|
|
7349
|
+
"default": "false"
|
|
7345
7350
|
}
|
|
7346
7351
|
],
|
|
7347
7352
|
"properties": [
|
|
@@ -7365,6 +7370,12 @@
|
|
|
7365
7370
|
"description": "type of message. Can be either 'message' or 'confirm'. In case of confirm the buttons 'yes' and 'no'\nwill be shown and the dialog becomes modal.",
|
|
7366
7371
|
"type": "string",
|
|
7367
7372
|
"default": "\"message\""
|
|
7373
|
+
},
|
|
7374
|
+
{
|
|
7375
|
+
"name": "open",
|
|
7376
|
+
"attribute": "open",
|
|
7377
|
+
"type": "boolean",
|
|
7378
|
+
"default": "false"
|
|
7368
7379
|
}
|
|
7369
7380
|
]
|
|
7370
7381
|
},
|
|
@@ -11523,7 +11534,7 @@
|
|
|
11523
11534
|
},
|
|
11524
11535
|
{
|
|
11525
11536
|
"name": "selector",
|
|
11526
|
-
"description": "(optional) CSS selector: selects the elements to toggle client side (sets or unsets a
|
|
11537
|
+
"description": "(optional) CSS selector: selects the elements to toggle client side (sets or unsets a\nCSS class `.toggled`). Setting this property will not trigger a reload as everything is\nhandled by javascript.",
|
|
11527
11538
|
"type": "string"
|
|
11528
11539
|
},
|
|
11529
11540
|
{
|
|
@@ -11574,7 +11585,7 @@
|
|
|
11574
11585
|
},
|
|
11575
11586
|
{
|
|
11576
11587
|
"name": "global",
|
|
11577
|
-
"description": "If set, toggle the state of elements which reside\nin the surrounding HTML context below `pb-page
|
|
11588
|
+
"description": "If set, toggle the state of elements which reside\nin the surrounding HTML context below `pb-page`\n(means: elements which are not inside a `pb-view` or `pb-load`).",
|
|
11578
11589
|
"type": "boolean",
|
|
11579
11590
|
"default": "false"
|
|
11580
11591
|
},
|
|
@@ -11620,7 +11631,7 @@
|
|
|
11620
11631
|
{
|
|
11621
11632
|
"name": "selector",
|
|
11622
11633
|
"attribute": "selector",
|
|
11623
|
-
"description": "(optional) CSS selector: selects the elements to toggle client side (sets or unsets a
|
|
11634
|
+
"description": "(optional) CSS selector: selects the elements to toggle client side (sets or unsets a\nCSS class `.toggled`). Setting this property will not trigger a reload as everything is\nhandled by javascript.",
|
|
11624
11635
|
"type": "string"
|
|
11625
11636
|
},
|
|
11626
11637
|
{
|
|
@@ -11680,7 +11691,7 @@
|
|
|
11680
11691
|
{
|
|
11681
11692
|
"name": "global",
|
|
11682
11693
|
"attribute": "global",
|
|
11683
|
-
"description": "If set, toggle the state of elements which reside\nin the surrounding HTML context below `pb-page
|
|
11694
|
+
"description": "If set, toggle the state of elements which reside\nin the surrounding HTML context below `pb-page`\n(means: elements which are not inside a `pb-view` or `pb-load`).",
|
|
11684
11695
|
"type": "boolean",
|
|
11685
11696
|
"default": "false"
|
|
11686
11697
|
},
|