@umbraco-ui/uui-pagination 1.5.0-rc.0 → 1.5.0-rc.2
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/README.md +1 -1
- package/custom-elements.json +5 -5
- package/lib/uui-pagination.element.d.ts +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Umbraco style pagination component. By implementing a resizeObserver it changes
|
|
|
6
6
|
|
|
7
7
|
### See it in action
|
|
8
8
|
|
|
9
|
-
Preview the component on [Storybook](https://uui.umbraco.com/?path=/
|
|
9
|
+
Preview the component on [Storybook](https://uui.umbraco.com/?path=/docs/uui-pagination--docs)
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
package/custom-elements.json
CHANGED
|
@@ -30,11 +30,6 @@
|
|
|
30
30
|
}
|
|
31
31
|
],
|
|
32
32
|
"properties": [
|
|
33
|
-
{
|
|
34
|
-
"name": "styles",
|
|
35
|
-
"type": "CSSResult[]",
|
|
36
|
-
"default": "[null]"
|
|
37
|
-
},
|
|
38
33
|
{
|
|
39
34
|
"name": "label",
|
|
40
35
|
"attribute": "label",
|
|
@@ -61,6 +56,11 @@
|
|
|
61
56
|
"attribute": "current",
|
|
62
57
|
"description": "Define the current active page.",
|
|
63
58
|
"type": "number"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "styles",
|
|
62
|
+
"type": "CSSResult[]",
|
|
63
|
+
"default": "[null]"
|
|
64
64
|
}
|
|
65
65
|
],
|
|
66
66
|
"events": [
|
|
@@ -5,7 +5,6 @@ import { LitElement } from 'lit';
|
|
|
5
5
|
* @fires change - When clicked on the page button fires change event
|
|
6
6
|
*/
|
|
7
7
|
export declare class UUIPaginationElement extends LitElement {
|
|
8
|
-
static styles: import("lit").CSSResult[];
|
|
9
8
|
private _observer;
|
|
10
9
|
connectedCallback(): void;
|
|
11
10
|
disconnectedCallback(): void;
|
|
@@ -74,6 +73,7 @@ export declare class UUIPaginationElement extends LitElement {
|
|
|
74
73
|
protected renderNavigationLeft(): import("lit-html").TemplateResult<1>;
|
|
75
74
|
protected renderNavigationRight(): import("lit-html").TemplateResult<1>;
|
|
76
75
|
render(): import("lit-html").TemplateResult<1>;
|
|
76
|
+
static styles: import("lit").CSSResult[];
|
|
77
77
|
}
|
|
78
78
|
declare global {
|
|
79
79
|
interface HTMLElementTagNameMap {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-ui/uui-pagination",
|
|
3
|
-
"version": "1.5.0-rc.
|
|
3
|
+
"version": "1.5.0-rc.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Umbraco",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"custom-elements.json"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@umbraco-ui/uui-base": "1.5.0-rc.
|
|
34
|
-
"@umbraco-ui/uui-button": "1.5.0-rc.
|
|
35
|
-
"@umbraco-ui/uui-button-group": "1.5.0-rc.
|
|
33
|
+
"@umbraco-ui/uui-base": "1.5.0-rc.2",
|
|
34
|
+
"@umbraco-ui/uui-button": "1.5.0-rc.2",
|
|
35
|
+
"@umbraco-ui/uui-button-group": "1.5.0-rc.2"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "npm run analyze && tsc --build --force && rollup -c rollup.config.js",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
45
|
"homepage": "https://uui.umbraco.com/?path=/story/uui-pagination",
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "573af25cbb43f673731b87dd8e23dbe632bfc348"
|
|
47
47
|
}
|