@maggioli-design-system/mds-paginator-item 2.1.0 → 2.1.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.
- package/dist/cjs/{index-788f9a49.js → index-3ffc30c3.js} +56 -1
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/mds-paginator-item.cjs.entry.js +1 -1
- package/dist/cjs/mds-paginator-item.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/mds-paginator-item/mds-paginator-item.css +1 -1
- package/dist/collection/dictionary/icon.js +3 -1
- package/dist/esm/{index-21e2f636.js → index-d196ebae.js} +56 -1
- package/dist/esm/loader.js +3 -3
- package/dist/esm/mds-paginator-item.entry.js +1 -1
- package/dist/esm/mds-paginator-item.js +3 -3
- package/dist/esm-es5/{index-21e2f636.js → index-d196ebae.js} +0 -0
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mds-paginator-item.entry.js +1 -1
- package/dist/esm-es5/mds-paginator-item.js +1 -1
- package/dist/mds-paginator-item/mds-paginator-item.esm.js +1 -1
- package/dist/mds-paginator-item/mds-paginator-item.js +1 -1
- package/dist/mds-paginator-item/{p-fb4c9e4e.entry.js → p-308f54f9.entry.js} +1 -1
- package/dist/mds-paginator-item/{p-27de097c.js → p-3174ae8b.js} +0 -0
- package/dist/mds-paginator-item/{p-dd301d2d.system.js → p-711f7cb4.system.js} +1 -1
- package/dist/mds-paginator-item/{p-4b44f6c6.system.entry.js → p-8a518aac.system.entry.js} +1 -1
- package/dist/mds-paginator-item/{p-50a19f7a.system.js → p-bad78d87.system.js} +0 -0
- package/dist/stats.json +98 -26
- package/dist/types/dictionary/icon.d.ts +2 -1
- package/dist/types/stencil-public-runtime.d.ts +11 -0
- package/package.json +1 -1
- package/readme.md +20 -0
- package/src/components/mds-paginator-item/mds-paginator-item.css +1 -1
- package/src/components/mds-paginator-item/readme.md +20 -0
- package/src/dictionary/icon.ts +4 -0
- package/src/fixtures/icons.json +173 -0
- package/src/fixtures/iconsauce.json +175 -0
- package/www/build/mds-paginator-item.esm.js +1 -1
- package/www/build/mds-paginator-item.js +1 -1
- package/www/build/{p-fb4c9e4e.entry.js → p-308f54f9.entry.js} +1 -1
- package/www/build/{p-27de097c.js → p-3174ae8b.js} +0 -0
- package/www/build/{p-dd301d2d.system.js → p-711f7cb4.system.js} +1 -1
- package/www/build/{p-4b44f6c6.system.entry.js → p-8a518aac.system.entry.js} +1 -1
- /package/www/build/{p-50a19f7a.system.js → p-bad78d87.system.js} +0 -0
|
@@ -133,6 +133,14 @@ const h = (nodeName, vnodeData, ...children) => {
|
|
|
133
133
|
}
|
|
134
134
|
return vnode;
|
|
135
135
|
};
|
|
136
|
+
/**
|
|
137
|
+
* A utility function for creating a virtual DOM node from a tag and some
|
|
138
|
+
* possible text content.
|
|
139
|
+
*
|
|
140
|
+
* @param tag the tag for this element
|
|
141
|
+
* @param text possible text content for the node
|
|
142
|
+
* @returns a newly-minted virtual DOM node
|
|
143
|
+
*/
|
|
136
144
|
const newVNode = (tag, text) => {
|
|
137
145
|
const vnode = {
|
|
138
146
|
$flags$: 0,
|
|
@@ -147,6 +155,12 @@ const newVNode = (tag, text) => {
|
|
|
147
155
|
return vnode;
|
|
148
156
|
};
|
|
149
157
|
const Host = {};
|
|
158
|
+
/**
|
|
159
|
+
* Check whether a given node is a Host node or not
|
|
160
|
+
*
|
|
161
|
+
* @param node the virtual DOM node to check
|
|
162
|
+
* @returns whether it's a Host node or not
|
|
163
|
+
*/
|
|
150
164
|
const isHost = (node) => node && node.$tag$ === Host;
|
|
151
165
|
/**
|
|
152
166
|
* Parse a new property value for a given property type.
|
|
@@ -405,6 +419,21 @@ const createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
|
|
|
405
419
|
}
|
|
406
420
|
return elm;
|
|
407
421
|
};
|
|
422
|
+
/**
|
|
423
|
+
* Create DOM nodes corresponding to a list of {@link d.Vnode} objects and
|
|
424
|
+
* add them to the DOM in the appropriate place.
|
|
425
|
+
*
|
|
426
|
+
* @param parentElm the DOM node which should be used as a parent for the new
|
|
427
|
+
* DOM nodes
|
|
428
|
+
* @param before a child of the `parentElm` which the new children should be
|
|
429
|
+
* inserted before (optional)
|
|
430
|
+
* @param parentVNode the parent virtual DOM node
|
|
431
|
+
* @param vnodes the new child virtual DOM nodes to produce DOM nodes for
|
|
432
|
+
* @param startIdx the index in the child virtual DOM nodes at which to start
|
|
433
|
+
* creating DOM nodes (inclusive)
|
|
434
|
+
* @param endIdx the index in the child virtual DOM nodes at which to stop
|
|
435
|
+
* creating DOM nodes (inclusive)
|
|
436
|
+
*/
|
|
408
437
|
const addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) => {
|
|
409
438
|
let containerElm = (parentElm);
|
|
410
439
|
let childNode;
|
|
@@ -421,6 +450,19 @@ const addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) =>
|
|
|
421
450
|
}
|
|
422
451
|
}
|
|
423
452
|
};
|
|
453
|
+
/**
|
|
454
|
+
* Remove the DOM elements corresponding to a list of {@link d.VNode} objects.
|
|
455
|
+
* This can be used to, for instance, clean up after a list of children which
|
|
456
|
+
* should no longer be shown.
|
|
457
|
+
*
|
|
458
|
+
* This function also handles some of Stencil's slot relocation logic.
|
|
459
|
+
*
|
|
460
|
+
* @param vnodes a list of virtual DOM nodes to remove
|
|
461
|
+
* @param startIdx the index at which to start removing nodes (inclusive)
|
|
462
|
+
* @param endIdx the index at which to stop removing nodes (inclusive)
|
|
463
|
+
* @param vnode a VNode
|
|
464
|
+
* @param elm an element
|
|
465
|
+
*/
|
|
424
466
|
const removeVnodes = (vnodes, startIdx, endIdx, vnode, elm) => {
|
|
425
467
|
for (; startIdx <= endIdx; ++startIdx) {
|
|
426
468
|
if ((vnode = vnodes[startIdx])) {
|
|
@@ -612,7 +654,8 @@ const updateChildren = (parentElm, oldCh, newVNode, newCh) => {
|
|
|
612
654
|
*
|
|
613
655
|
* So, in other words, if `key` attrs are not set on VNodes which may be
|
|
614
656
|
* changing order within a `children` array or something along those lines then
|
|
615
|
-
* we could obtain a false
|
|
657
|
+
* we could obtain a false negative and then have to do needless re-rendering
|
|
658
|
+
* (i.e. we'd say two VNodes aren't equal when in fact they should be).
|
|
616
659
|
*
|
|
617
660
|
* @param leftVNode the first VNode to check
|
|
618
661
|
* @param rightVNode the second VNode to check
|
|
@@ -676,6 +719,18 @@ const patch = (oldVNode, newVNode) => {
|
|
|
676
719
|
elm.data = text;
|
|
677
720
|
}
|
|
678
721
|
};
|
|
722
|
+
/**
|
|
723
|
+
* The main entry point for Stencil's virtual DOM-based rendering engine
|
|
724
|
+
*
|
|
725
|
+
* Given a {@link d.HostRef} container and some virtual DOM nodes, this
|
|
726
|
+
* function will handle creating a virtual DOM tree with a single root, patching
|
|
727
|
+
* the current virtual DOM tree onto an old one (if any), dealing with slot
|
|
728
|
+
* relocation, and reflecting attributes.
|
|
729
|
+
*
|
|
730
|
+
* @param hostRef data needed to root and render the virtual DOM tree, such as
|
|
731
|
+
* the DOM node into which it should be rendered.
|
|
732
|
+
* @param renderFnResults the virtual DOM nodes to be rendered
|
|
733
|
+
*/
|
|
679
734
|
const renderVdom = (hostRef, renderFnResults) => {
|
|
680
735
|
const hostElm = hostRef.$hostElement$;
|
|
681
736
|
const cmpMeta = hostRef.$cmpMeta$;
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-3ffc30c3.js');
|
|
6
6
|
|
|
7
7
|
/*
|
|
8
|
-
Stencil Client Patch Esm v2.22.
|
|
8
|
+
Stencil Client Patch Esm v2.22.2 | MIT Licensed | https://stenciljs.com
|
|
9
9
|
*/
|
|
10
10
|
const patchEsm = () => {
|
|
11
11
|
return index.promiseResolve();
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-3ffc30c3.js');
|
|
6
6
|
|
|
7
7
|
function r(e){var t,f,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=" "),n+=f);else for(t in e)e[t]&&(n&&(n+=" "),n+=t);return n}function clsx(){for(var e,t,f=0,n="";f<arguments.length;)(e=arguments[f++])&&(t=r(e))&&(n&&(n+=" "),n+=t);return n}
|
|
8
8
|
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-3ffc30c3.js');
|
|
6
6
|
|
|
7
7
|
/*
|
|
8
|
-
Stencil Client Patch Browser v2.22.
|
|
8
|
+
Stencil Client Patch Browser v2.22.2 | MIT Licensed | https://stenciljs.com
|
|
9
9
|
*/
|
|
10
10
|
const patchBrowser = () => {
|
|
11
11
|
const importMeta = (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('mds-paginator-item.cjs.js', document.baseURI).href));
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
/**
|
|
26
26
|
* @prop --mds-paginator-item-background-disabled: Sets the background-color of the item when is disabled
|
|
27
27
|
* @prop --mds-paginator-item-background-hover: Sets the background-color of the item when the mouse is over it
|
|
28
28
|
* @prop --mds-paginator-item-background-selected: Sets the background-color of the item when is selected
|
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
import jsonIconsDictionary from '../fixtures/icons.json';
|
|
2
|
+
import jsonMggIconsDictionary from '../fixtures/iconsauce.json';
|
|
2
3
|
const iconsDictionary = jsonIconsDictionary;
|
|
3
|
-
|
|
4
|
+
const mggIconsDictionary = jsonMggIconsDictionary;
|
|
5
|
+
export { iconsDictionary, mggIconsDictionary, };
|
|
@@ -111,6 +111,14 @@ const h = (nodeName, vnodeData, ...children) => {
|
|
|
111
111
|
}
|
|
112
112
|
return vnode;
|
|
113
113
|
};
|
|
114
|
+
/**
|
|
115
|
+
* A utility function for creating a virtual DOM node from a tag and some
|
|
116
|
+
* possible text content.
|
|
117
|
+
*
|
|
118
|
+
* @param tag the tag for this element
|
|
119
|
+
* @param text possible text content for the node
|
|
120
|
+
* @returns a newly-minted virtual DOM node
|
|
121
|
+
*/
|
|
114
122
|
const newVNode = (tag, text) => {
|
|
115
123
|
const vnode = {
|
|
116
124
|
$flags$: 0,
|
|
@@ -125,6 +133,12 @@ const newVNode = (tag, text) => {
|
|
|
125
133
|
return vnode;
|
|
126
134
|
};
|
|
127
135
|
const Host = {};
|
|
136
|
+
/**
|
|
137
|
+
* Check whether a given node is a Host node or not
|
|
138
|
+
*
|
|
139
|
+
* @param node the virtual DOM node to check
|
|
140
|
+
* @returns whether it's a Host node or not
|
|
141
|
+
*/
|
|
128
142
|
const isHost = (node) => node && node.$tag$ === Host;
|
|
129
143
|
/**
|
|
130
144
|
* Parse a new property value for a given property type.
|
|
@@ -383,6 +397,21 @@ const createElm = (oldParentVNode, newParentVNode, childIndex, parentElm) => {
|
|
|
383
397
|
}
|
|
384
398
|
return elm;
|
|
385
399
|
};
|
|
400
|
+
/**
|
|
401
|
+
* Create DOM nodes corresponding to a list of {@link d.Vnode} objects and
|
|
402
|
+
* add them to the DOM in the appropriate place.
|
|
403
|
+
*
|
|
404
|
+
* @param parentElm the DOM node which should be used as a parent for the new
|
|
405
|
+
* DOM nodes
|
|
406
|
+
* @param before a child of the `parentElm` which the new children should be
|
|
407
|
+
* inserted before (optional)
|
|
408
|
+
* @param parentVNode the parent virtual DOM node
|
|
409
|
+
* @param vnodes the new child virtual DOM nodes to produce DOM nodes for
|
|
410
|
+
* @param startIdx the index in the child virtual DOM nodes at which to start
|
|
411
|
+
* creating DOM nodes (inclusive)
|
|
412
|
+
* @param endIdx the index in the child virtual DOM nodes at which to stop
|
|
413
|
+
* creating DOM nodes (inclusive)
|
|
414
|
+
*/
|
|
386
415
|
const addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) => {
|
|
387
416
|
let containerElm = (parentElm);
|
|
388
417
|
let childNode;
|
|
@@ -399,6 +428,19 @@ const addVnodes = (parentElm, before, parentVNode, vnodes, startIdx, endIdx) =>
|
|
|
399
428
|
}
|
|
400
429
|
}
|
|
401
430
|
};
|
|
431
|
+
/**
|
|
432
|
+
* Remove the DOM elements corresponding to a list of {@link d.VNode} objects.
|
|
433
|
+
* This can be used to, for instance, clean up after a list of children which
|
|
434
|
+
* should no longer be shown.
|
|
435
|
+
*
|
|
436
|
+
* This function also handles some of Stencil's slot relocation logic.
|
|
437
|
+
*
|
|
438
|
+
* @param vnodes a list of virtual DOM nodes to remove
|
|
439
|
+
* @param startIdx the index at which to start removing nodes (inclusive)
|
|
440
|
+
* @param endIdx the index at which to stop removing nodes (inclusive)
|
|
441
|
+
* @param vnode a VNode
|
|
442
|
+
* @param elm an element
|
|
443
|
+
*/
|
|
402
444
|
const removeVnodes = (vnodes, startIdx, endIdx, vnode, elm) => {
|
|
403
445
|
for (; startIdx <= endIdx; ++startIdx) {
|
|
404
446
|
if ((vnode = vnodes[startIdx])) {
|
|
@@ -590,7 +632,8 @@ const updateChildren = (parentElm, oldCh, newVNode, newCh) => {
|
|
|
590
632
|
*
|
|
591
633
|
* So, in other words, if `key` attrs are not set on VNodes which may be
|
|
592
634
|
* changing order within a `children` array or something along those lines then
|
|
593
|
-
* we could obtain a false
|
|
635
|
+
* we could obtain a false negative and then have to do needless re-rendering
|
|
636
|
+
* (i.e. we'd say two VNodes aren't equal when in fact they should be).
|
|
594
637
|
*
|
|
595
638
|
* @param leftVNode the first VNode to check
|
|
596
639
|
* @param rightVNode the second VNode to check
|
|
@@ -654,6 +697,18 @@ const patch = (oldVNode, newVNode) => {
|
|
|
654
697
|
elm.data = text;
|
|
655
698
|
}
|
|
656
699
|
};
|
|
700
|
+
/**
|
|
701
|
+
* The main entry point for Stencil's virtual DOM-based rendering engine
|
|
702
|
+
*
|
|
703
|
+
* Given a {@link d.HostRef} container and some virtual DOM nodes, this
|
|
704
|
+
* function will handle creating a virtual DOM tree with a single root, patching
|
|
705
|
+
* the current virtual DOM tree onto an old one (if any), dealing with slot
|
|
706
|
+
* relocation, and reflecting attributes.
|
|
707
|
+
*
|
|
708
|
+
* @param hostRef data needed to root and render the virtual DOM tree, such as
|
|
709
|
+
* the DOM node into which it should be rendered.
|
|
710
|
+
* @param renderFnResults the virtual DOM nodes to be rendered
|
|
711
|
+
*/
|
|
657
712
|
const renderVdom = (hostRef, renderFnResults) => {
|
|
658
713
|
const hostElm = hostRef.$hostElement$;
|
|
659
714
|
const cmpMeta = hostRef.$cmpMeta$;
|
package/dist/esm/loader.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-d196ebae.js';
|
|
2
|
+
export { s as setNonce } from './index-d196ebae.js';
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
|
-
Stencil Client Patch Esm v2.22.
|
|
5
|
+
Stencil Client Patch Esm v2.22.2 | MIT Licensed | https://stenciljs.com
|
|
6
6
|
*/
|
|
7
7
|
const patchEsm = () => {
|
|
8
8
|
return promiseResolve();
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as registerInstance, h, H as Host } from './index-
|
|
1
|
+
import { r as registerInstance, h, H as Host } from './index-d196ebae.js';
|
|
2
2
|
|
|
3
3
|
function r(e){var t,f,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(f=r(e[t]))&&(n&&(n+=" "),n+=f);else for(t in e)e[t]&&(n&&(n+=" "),n+=t);return n}function clsx(){for(var e,t,f=0,n="";f<arguments.length;)(e=arguments[f++])&&(t=r(e))&&(n&&(n+=" "),n+=t);return n}
|
|
4
4
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
2
|
-
export { s as setNonce } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-d196ebae.js';
|
|
2
|
+
export { s as setNonce } from './index-d196ebae.js';
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
|
-
Stencil Client Patch Browser v2.22.
|
|
5
|
+
Stencil Client Patch Browser v2.22.2 | MIT Licensed | https://stenciljs.com
|
|
6
6
|
*/
|
|
7
7
|
const patchBrowser = () => {
|
|
8
8
|
const importMeta = import.meta.url;
|
|
File without changes
|
package/dist/esm-es5/loader.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as promiseResolve,b as bootstrapLazy}from"./index-
|
|
1
|
+
import{p as promiseResolve,b as bootstrapLazy}from"./index-d196ebae.js";export{s as setNonce}from"./index-d196ebae.js";var patchEsm=function(){return promiseResolve()};var defineCustomElements=function(e,t){if(typeof window==="undefined")return Promise.resolve();return patchEsm().then((function(){return bootstrapLazy([["mds-paginator-item",[[1,"mds-paginator-item",{icon:[1],active:[516],disabled:[516]}]]]],t)}))};export{defineCustomElements};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as registerInstance,h,H as Host}from"./index-
|
|
1
|
+
import{r as registerInstance,h,H as Host}from"./index-d196ebae.js";function r(o){var t,e,a="";if("string"==typeof o||"number"==typeof o)a+=o;else if("object"==typeof o)if(Array.isArray(o))for(t=0;t<o.length;t++)o[t]&&(e=r(o[t]))&&(a&&(a+=" "),a+=e);else for(t in o)o[t]&&(a&&(a+=" "),a+=t);return a}function clsx(){for(var o,t,e=0,a="";e<arguments.length;)(o=arguments[e++])&&(t=r(o))&&(a&&(a+=" "),a+=t);return a}var mdsPaginatorItemCss=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{--mds-paginator-item-background-disabled:rgb(var(--tone-neutral-09));--mds-paginator-item-background-hover:rgb(var(--tone-neutral-08));--mds-paginator-item-background-selected:rgb(var(--brand-maggioli-03));--mds-paginator-item-background:rgb(var(--tone-neutral-09));--mds-paginator-item-color-disabled:rgb(var(--tone-neutral-06));--mds-paginator-item-color-hover:rgb(var(--tone-neutral-02));--mds-paginator-item-color-selected:rgb(var(--tone-neutral));--mds-paginator-item-color:rgb(var(--tone-neutral-02));--mds-paginator-item-radius:200px;--mds-paginator-item-shadow-disabled:none;--mds-paginator-item-shadow-hover:none;--mds-paginator-item-shadow-selected:0 0 1px 1px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);--mds-paginator-item-shadow:none;--mds-paginator-item-size:2.25rem;-webkit-box-sizing:border-box;box-sizing:border-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-negative:0;flex-shrink:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding-left:0.75rem;padding-right:0.75rem;-webkit-transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-transition-duration:150ms;transition-duration:150ms;background-color:var(--mds-paginator-item-background);border-radius:var(--mds-paginator-item-radius);-webkit-box-shadow:var(--mds-paginator-item-shadow);box-shadow:var(--mds-paginator-item-shadow);color:var(--mds-paginator-item-color);height:var(--mds-paginator-item-size);min-width:var(--mds-paginator-item-size)}:host(:hover){background-color:var(--mds-paginator-item-background-hover);-webkit-box-shadow:var(--mds-paginator-item-shadow-hover);box-shadow:var(--mds-paginator-item-shadow-hover);color:var(--mds-paginator-item-color-hover);fill:var(--mds-paginator-item-color-hover)}:host([active]){pointer-events:none;background-color:var(--mds-paginator-item-background-selected);-webkit-box-shadow:var(--mds-paginator-item-shadow-selected);box-shadow:var(--mds-paginator-item-shadow-selected);color:var(--mds-paginator-item-color-selected);fill:var(--mds-paginator-item-color-selected)}:host([disabled]){pointer-events:none;background-color:var(--mds-paginator-item-background-disabled);-webkit-box-shadow:var(--mds-paginator-item-shadow-disabled);box-shadow:var(--mds-paginator-item-shadow-disabled);color:var(--mds-paginator-item-color-disabled);fill:var(--mds-paginator-item-color-disabled)}.icon{padding-left:0px;padding-right:0px}";var MdsPaginatorItem=function(){function o(o){registerInstance(this,o);this.icon=undefined;this.active=undefined;this.disabled=undefined}o.prototype.render=function(){return h(Host,{class:clsx(this.active&&"active",this.disabled&&"disabled",this.icon&&"icon")},this.icon!==undefined?h("mds-icon",{name:this.icon}):h("mds-text",{class:"text",typography:"detail"},h("slot",null)))};return o}();MdsPaginatorItem.style=mdsPaginatorItemCss;export{MdsPaginatorItem as mds_paginator_item};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as promiseResolve,b as bootstrapLazy}from"./index-
|
|
1
|
+
import{p as promiseResolve,b as bootstrapLazy}from"./index-d196ebae.js";export{s as setNonce}from"./index-d196ebae.js";var patchBrowser=function(){var e=import.meta.url;var r={};if(e!==""){r.resourcesUrl=new URL(".",e).href}return promiseResolve(r)};patchBrowser().then((function(e){return bootstrapLazy([["mds-paginator-item",[[1,"mds-paginator-item",{icon:[1],active:[516],disabled:[516]}]]]],e)}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as
|
|
1
|
+
import{p as e,b as a}from"./p-3174ae8b.js";export{s as setNonce}from"./p-3174ae8b.js";(()=>{const s=import.meta.url,a={};return""!==s&&(a.resourcesUrl=new URL(".",s).href),e(a)})().then((e=>a([["p-308f54f9",[[1,"mds-paginator-item",{icon:[1],active:[516],disabled:[516]}]]]],e)));
|
|
@@ -115,7 +115,7 @@ DOMTokenList
|
|
|
115
115
|
var resourcesUrl = scriptElm ? scriptElm.getAttribute('data-resources-url') || scriptElm.src : '';
|
|
116
116
|
var start = function() {
|
|
117
117
|
// if src is not present then origin is "null", and new URL() throws TypeError: Failed to construct 'URL': Invalid base URL
|
|
118
|
-
var url = new URL('./p-
|
|
118
|
+
var url = new URL('./p-711f7cb4.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
|
|
119
119
|
System.import(url.href);
|
|
120
120
|
};
|
|
121
121
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as o,h as r,H as t}from"./p-
|
|
1
|
+
import{r as o,h as r,H as t}from"./p-3174ae8b.js";function a(o){var r,t,e="";if("string"==typeof o||"number"==typeof o)e+=o;else if("object"==typeof o)if(Array.isArray(o))for(r=0;r<o.length;r++)o[r]&&(t=a(o[r]))&&(e&&(e+=" "),e+=t);else for(r in o)o[r]&&(e&&(e+=" "),e+=r);return e}function e(){for(var o,r,t=0,e="";t<arguments.length;)(o=arguments[t++])&&(r=a(o))&&(e&&(e+=" "),e+=r);return e}const i=class{constructor(r){o(this,r),this.icon=void 0,this.active=void 0,this.disabled=void 0}render(){return r(t,{class:e(this.active&&"active",this.disabled&&"disabled",this.icon&&"icon")},void 0!==this.icon?r("mds-icon",{name:this.icon}):r("mds-text",{class:"text",typography:"detail"},r("slot",null)))}};i.style=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{--mds-paginator-item-background-disabled:rgb(var(--tone-neutral-09));--mds-paginator-item-background-hover:rgb(var(--tone-neutral-08));--mds-paginator-item-background-selected:rgb(var(--brand-maggioli-03));--mds-paginator-item-background:rgb(var(--tone-neutral-09));--mds-paginator-item-color-disabled:rgb(var(--tone-neutral-06));--mds-paginator-item-color-hover:rgb(var(--tone-neutral-02));--mds-paginator-item-color-selected:rgb(var(--tone-neutral));--mds-paginator-item-color:rgb(var(--tone-neutral-02));--mds-paginator-item-radius:200px;--mds-paginator-item-shadow-disabled:none;--mds-paginator-item-shadow-hover:none;--mds-paginator-item-shadow-selected:0 0 1px 1px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);--mds-paginator-item-shadow:none;--mds-paginator-item-size:2.25rem;-webkit-box-sizing:border-box;box-sizing:border-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-negative:0;flex-shrink:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding-left:0.75rem;padding-right:0.75rem;-webkit-transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-transition-duration:150ms;transition-duration:150ms;background-color:var(--mds-paginator-item-background);border-radius:var(--mds-paginator-item-radius);-webkit-box-shadow:var(--mds-paginator-item-shadow);box-shadow:var(--mds-paginator-item-shadow);color:var(--mds-paginator-item-color);height:var(--mds-paginator-item-size);min-width:var(--mds-paginator-item-size)}:host(:hover){background-color:var(--mds-paginator-item-background-hover);-webkit-box-shadow:var(--mds-paginator-item-shadow-hover);box-shadow:var(--mds-paginator-item-shadow-hover);color:var(--mds-paginator-item-color-hover);fill:var(--mds-paginator-item-color-hover)}:host([active]){pointer-events:none;background-color:var(--mds-paginator-item-background-selected);-webkit-box-shadow:var(--mds-paginator-item-shadow-selected);box-shadow:var(--mds-paginator-item-shadow-selected);color:var(--mds-paginator-item-color-selected);fill:var(--mds-paginator-item-color-selected)}:host([disabled]){pointer-events:none;background-color:var(--mds-paginator-item-background-disabled);-webkit-box-shadow:var(--mds-paginator-item-shadow-disabled);box-shadow:var(--mds-paginator-item-shadow-disabled);color:var(--mds-paginator-item-color-disabled);fill:var(--mds-paginator-item-color-disabled)}.icon{padding-left:0px;padding-right:0px}";export{i as mds_paginator_item}
|
|
File without changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
System.register(["./p-
|
|
1
|
+
System.register(["./p-bad78d87.system.js"],(function(e,t){"use strict";var r,n;return{setters:[function(t){r=t.p;n=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var n={};if(e!==""){n.resourcesUrl=new URL(".",e).href}return r(n)};e().then((function(e){return n([["p-8a518aac.system",[[1,"mds-paginator-item",{icon:[1],active:[516],disabled:[516]}]]]],e)}))}}}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
System.register(["./p-
|
|
1
|
+
System.register(["./p-bad78d87.system.js"],(function(o){"use strict";var r,e,t;return{setters:[function(o){r=o.r;e=o.h;t=o.H}],execute:function(){function a(o){var r,e,t="";if("string"==typeof o||"number"==typeof o)t+=o;else if("object"==typeof o)if(Array.isArray(o))for(r=0;r<o.length;r++)o[r]&&(e=a(o[r]))&&(t&&(t+=" "),t+=e);else for(r in o)o[r]&&(t&&(t+=" "),t+=r);return t}function i(){for(var o,r,e=0,t="";e<arguments.length;)(o=arguments[e++])&&(r=a(o))&&(t&&(t+=" "),t+=r);return t}var n=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{--mds-paginator-item-background-disabled:rgb(var(--tone-neutral-09));--mds-paginator-item-background-hover:rgb(var(--tone-neutral-08));--mds-paginator-item-background-selected:rgb(var(--brand-maggioli-03));--mds-paginator-item-background:rgb(var(--tone-neutral-09));--mds-paginator-item-color-disabled:rgb(var(--tone-neutral-06));--mds-paginator-item-color-hover:rgb(var(--tone-neutral-02));--mds-paginator-item-color-selected:rgb(var(--tone-neutral));--mds-paginator-item-color:rgb(var(--tone-neutral-02));--mds-paginator-item-radius:200px;--mds-paginator-item-shadow-disabled:none;--mds-paginator-item-shadow-hover:none;--mds-paginator-item-shadow-selected:0 0 1px 1px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);--mds-paginator-item-shadow:none;--mds-paginator-item-size:2.25rem;-webkit-box-sizing:border-box;box-sizing:border-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-negative:0;flex-shrink:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding-left:0.75rem;padding-right:0.75rem;-webkit-transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-transition-duration:150ms;transition-duration:150ms;background-color:var(--mds-paginator-item-background);border-radius:var(--mds-paginator-item-radius);-webkit-box-shadow:var(--mds-paginator-item-shadow);box-shadow:var(--mds-paginator-item-shadow);color:var(--mds-paginator-item-color);height:var(--mds-paginator-item-size);min-width:var(--mds-paginator-item-size)}:host(:hover){background-color:var(--mds-paginator-item-background-hover);-webkit-box-shadow:var(--mds-paginator-item-shadow-hover);box-shadow:var(--mds-paginator-item-shadow-hover);color:var(--mds-paginator-item-color-hover);fill:var(--mds-paginator-item-color-hover)}:host([active]){pointer-events:none;background-color:var(--mds-paginator-item-background-selected);-webkit-box-shadow:var(--mds-paginator-item-shadow-selected);box-shadow:var(--mds-paginator-item-shadow-selected);color:var(--mds-paginator-item-color-selected);fill:var(--mds-paginator-item-color-selected)}:host([disabled]){pointer-events:none;background-color:var(--mds-paginator-item-background-disabled);-webkit-box-shadow:var(--mds-paginator-item-shadow-disabled);box-shadow:var(--mds-paginator-item-shadow-disabled);color:var(--mds-paginator-item-color-disabled);fill:var(--mds-paginator-item-color-disabled)}.icon{padding-left:0px;padding-right:0px}";var s=o("mds_paginator_item",function(){function o(o){r(this,o);this.icon=undefined;this.active=undefined;this.disabled=undefined}o.prototype.render=function(){return e(t,{class:i(this.active&&"active",this.disabled&&"disabled",this.icon&&"icon")},this.icon!==undefined?e("mds-icon",{name:this.icon}):e("mds-text",{class:"text",typography:"detail"},e("slot",null)))};return o}());s.style=n}}}));
|
|
File without changes
|
package/dist/stats.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2023-
|
|
2
|
+
"timestamp": "2023-02-20T10:26:12",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "node",
|
|
5
5
|
"version": "18.3.0"
|
|
@@ -53,17 +53,17 @@
|
|
|
53
53
|
"name": "dist-lazy",
|
|
54
54
|
"files": 35,
|
|
55
55
|
"generatedFiles": [
|
|
56
|
-
"./dist/cjs/index-
|
|
56
|
+
"./dist/cjs/index-3ffc30c3.js",
|
|
57
57
|
"./dist/cjs/index.cjs.js",
|
|
58
58
|
"./dist/cjs/loader.cjs.js",
|
|
59
59
|
"./dist/cjs/mds-paginator-item.cjs.entry.js",
|
|
60
60
|
"./dist/cjs/mds-paginator-item.cjs.js",
|
|
61
|
-
"./dist/esm-es5/index-
|
|
61
|
+
"./dist/esm-es5/index-d196ebae.js",
|
|
62
62
|
"./dist/esm-es5/index.js",
|
|
63
63
|
"./dist/esm-es5/loader.js",
|
|
64
64
|
"./dist/esm-es5/mds-paginator-item.entry.js",
|
|
65
65
|
"./dist/esm-es5/mds-paginator-item.js",
|
|
66
|
-
"./dist/esm/index-
|
|
66
|
+
"./dist/esm/index-d196ebae.js",
|
|
67
67
|
"./dist/esm/index.js",
|
|
68
68
|
"./dist/esm/loader.js",
|
|
69
69
|
"./dist/esm/mds-paginator-item.entry.js",
|
|
@@ -73,21 +73,21 @@
|
|
|
73
73
|
"./dist/mds-paginator-item/index.esm.js",
|
|
74
74
|
"./dist/mds-paginator-item/mds-paginator-item.esm.js",
|
|
75
75
|
"./dist/mds-paginator-item/mds-paginator-item.js",
|
|
76
|
-
"./dist/mds-paginator-item/p-
|
|
77
|
-
"./dist/mds-paginator-item/p-
|
|
78
|
-
"./dist/mds-paginator-item/p-50a19f7a.system.js",
|
|
76
|
+
"./dist/mds-paginator-item/p-308f54f9.entry.js",
|
|
77
|
+
"./dist/mds-paginator-item/p-3174ae8b.js",
|
|
79
78
|
"./dist/mds-paginator-item/p-50ea2036.system.js",
|
|
80
|
-
"./dist/mds-paginator-item/p-
|
|
81
|
-
"./dist/mds-paginator-item/p-
|
|
79
|
+
"./dist/mds-paginator-item/p-711f7cb4.system.js",
|
|
80
|
+
"./dist/mds-paginator-item/p-8a518aac.system.entry.js",
|
|
81
|
+
"./dist/mds-paginator-item/p-bad78d87.system.js",
|
|
82
82
|
"./www/build/index.esm.js",
|
|
83
83
|
"./www/build/mds-paginator-item.esm.js",
|
|
84
84
|
"./www/build/mds-paginator-item.js",
|
|
85
|
-
"./www/build/p-
|
|
86
|
-
"./www/build/p-
|
|
87
|
-
"./www/build/p-50a19f7a.system.js",
|
|
85
|
+
"./www/build/p-308f54f9.entry.js",
|
|
86
|
+
"./www/build/p-3174ae8b.js",
|
|
88
87
|
"./www/build/p-50ea2036.system.js",
|
|
89
|
-
"./www/build/p-
|
|
90
|
-
"./www/build/p-
|
|
88
|
+
"./www/build/p-711f7cb4.system.js",
|
|
89
|
+
"./www/build/p-8a518aac.system.entry.js",
|
|
90
|
+
"./www/build/p-bad78d87.system.js"
|
|
91
91
|
]
|
|
92
92
|
},
|
|
93
93
|
{
|
|
@@ -120,10 +120,10 @@
|
|
|
120
120
|
"components": [
|
|
121
121
|
"mds-paginator-item"
|
|
122
122
|
],
|
|
123
|
-
"bundleId": "p-
|
|
124
|
-
"fileName": "p-
|
|
123
|
+
"bundleId": "p-308f54f9",
|
|
124
|
+
"fileName": "p-308f54f9.entry.js",
|
|
125
125
|
"imports": [
|
|
126
|
-
"p-
|
|
126
|
+
"p-3174ae8b.js"
|
|
127
127
|
],
|
|
128
128
|
"originalByteSize": 4534
|
|
129
129
|
}
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
"bundleId": "mds-paginator-item",
|
|
138
138
|
"fileName": "mds-paginator-item.entry.js",
|
|
139
139
|
"imports": [
|
|
140
|
-
"index-
|
|
140
|
+
"index-d196ebae.js"
|
|
141
141
|
],
|
|
142
142
|
"originalByteSize": 4538
|
|
143
143
|
}
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"bundleId": "mds-paginator-item",
|
|
152
152
|
"fileName": "mds-paginator-item.entry.js",
|
|
153
153
|
"imports": [
|
|
154
|
-
"index-
|
|
154
|
+
"index-d196ebae.js"
|
|
155
155
|
],
|
|
156
156
|
"originalByteSize": 4538
|
|
157
157
|
}
|
|
@@ -162,10 +162,10 @@
|
|
|
162
162
|
"components": [
|
|
163
163
|
"mds-paginator-item"
|
|
164
164
|
],
|
|
165
|
-
"bundleId": "p-
|
|
166
|
-
"fileName": "p-
|
|
165
|
+
"bundleId": "p-8a518aac.system",
|
|
166
|
+
"fileName": "p-8a518aac.system.entry.js",
|
|
167
167
|
"imports": [
|
|
168
|
-
"p-
|
|
168
|
+
"p-bad78d87.system.js"
|
|
169
169
|
],
|
|
170
170
|
"originalByteSize": 4826
|
|
171
171
|
}
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
"bundleId": "mds-paginator-item.cjs",
|
|
180
180
|
"fileName": "mds-paginator-item.cjs.entry.js",
|
|
181
181
|
"imports": [
|
|
182
|
-
"index-
|
|
182
|
+
"index-3ffc30c3.js"
|
|
183
183
|
],
|
|
184
184
|
"originalByteSize": 4620
|
|
185
185
|
}
|
|
@@ -371,7 +371,78 @@
|
|
|
371
371
|
"legacyContext": [],
|
|
372
372
|
"internal": false,
|
|
373
373
|
"assetsDirs": [],
|
|
374
|
-
"styleDocs": [
|
|
374
|
+
"styleDocs": [
|
|
375
|
+
{
|
|
376
|
+
"name": "--mds-paginator-item-background-disabled",
|
|
377
|
+
"docs": "Sets the background-color of the item when is disabled",
|
|
378
|
+
"annotation": "prop"
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"name": "--mds-paginator-item-background-hover",
|
|
382
|
+
"docs": "Sets the background-color of the item when the mouse is over it",
|
|
383
|
+
"annotation": "prop"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"name": "--mds-paginator-item-background-selected",
|
|
387
|
+
"docs": "Sets the background-color of the item when is selected",
|
|
388
|
+
"annotation": "prop"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"name": "--mds-paginator-item-background",
|
|
392
|
+
"docs": "Sets the background-color of the pages area and the item",
|
|
393
|
+
"annotation": "prop"
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"name": "--mds-paginator-item-color-disabled",
|
|
397
|
+
"docs": "Sets the color of the item when is disabled",
|
|
398
|
+
"annotation": "prop"
|
|
399
|
+
},
|
|
400
|
+
{
|
|
401
|
+
"name": "--mds-paginator-item-color-hover",
|
|
402
|
+
"docs": "Sets the text color of the item when the mouse is over it",
|
|
403
|
+
"annotation": "prop"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"name": "--mds-paginator-item-color-selected",
|
|
407
|
+
"docs": "Sets the text color of the item when is selected",
|
|
408
|
+
"annotation": "prop"
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"name": "--mds-paginator-item-color",
|
|
412
|
+
"docs": "Sets the text color of the component",
|
|
413
|
+
"annotation": "prop"
|
|
414
|
+
},
|
|
415
|
+
{
|
|
416
|
+
"name": "--mds-paginator-item-radius",
|
|
417
|
+
"docs": "Sets the border-radius of the component",
|
|
418
|
+
"annotation": "prop"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"name": "--mds-paginator-item-shadow-disabled",
|
|
422
|
+
"docs": "Sets the box-shadow of the item when is disabled",
|
|
423
|
+
"annotation": "prop"
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"name": "--mds-paginator-item-shadow-hover",
|
|
427
|
+
"docs": "Sets the box-shadow of the item when the mouse is over it",
|
|
428
|
+
"annotation": "prop"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"name": "--mds-paginator-item-shadow-selected",
|
|
432
|
+
"docs": "Sets the box-shadow of the item when is selected",
|
|
433
|
+
"annotation": "prop"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"name": "--mds-paginator-item-shadow",
|
|
437
|
+
"docs": "Sets the box-shadow of the component",
|
|
438
|
+
"annotation": "prop"
|
|
439
|
+
},
|
|
440
|
+
{
|
|
441
|
+
"name": "--mds-paginator-item-size",
|
|
442
|
+
"docs": "Sets the height and the min-width of the paginator item",
|
|
443
|
+
"annotation": "prop"
|
|
444
|
+
}
|
|
445
|
+
],
|
|
375
446
|
"docs": {
|
|
376
447
|
"tags": [],
|
|
377
448
|
"text": ""
|
|
@@ -452,7 +523,7 @@
|
|
|
452
523
|
],
|
|
453
524
|
"componentGraph": {
|
|
454
525
|
"sc-mds-paginator-item": [
|
|
455
|
-
"p-
|
|
526
|
+
"p-3174ae8b.js"
|
|
456
527
|
]
|
|
457
528
|
},
|
|
458
529
|
"sourceGraph": {
|
|
@@ -463,7 +534,8 @@
|
|
|
463
534
|
"./src/dictionary/color.ts": [],
|
|
464
535
|
"./src/dictionary/floating-ui.ts": [],
|
|
465
536
|
"./src/dictionary/icon.ts": [
|
|
466
|
-
"./src/fixtures/icons.json"
|
|
537
|
+
"./src/fixtures/icons.json",
|
|
538
|
+
"./src/fixtures/iconsauce.json"
|
|
467
539
|
],
|
|
468
540
|
"./src/dictionary/input-text-type.ts": [],
|
|
469
541
|
"./src/dictionary/loading.ts": [],
|
|
@@ -485,6 +485,14 @@ export interface FunctionalUtilities {
|
|
|
485
485
|
export interface FunctionalComponent<T = {}> {
|
|
486
486
|
(props: T, children: VNode[], utils: FunctionalUtilities): VNode | VNode[];
|
|
487
487
|
}
|
|
488
|
+
/**
|
|
489
|
+
* A Child VDOM node
|
|
490
|
+
*
|
|
491
|
+
* This has most of the same properties as {@link VNode} but friendlier names
|
|
492
|
+
* (i.e. `vtag` instead of `$tag$`, `vchildren` instead of `$children$`) in
|
|
493
|
+
* order to provide a friendlier public interface for users of the
|
|
494
|
+
* {@link FunctionalUtilities}).
|
|
495
|
+
*/
|
|
488
496
|
export interface ChildNode {
|
|
489
497
|
vtag?: string | number | Function;
|
|
490
498
|
vkey?: string | number;
|
|
@@ -531,6 +539,9 @@ export declare function h(sel: any, children: Array<VNode | undefined | null>):
|
|
|
531
539
|
export declare function h(sel: any, data: VNodeData | null, text: string): VNode;
|
|
532
540
|
export declare function h(sel: any, data: VNodeData | null, children: Array<VNode | undefined | null>): VNode;
|
|
533
541
|
export declare function h(sel: any, data: VNodeData | null, children: VNode): VNode;
|
|
542
|
+
/**
|
|
543
|
+
* A virtual DOM node
|
|
544
|
+
*/
|
|
534
545
|
export interface VNode {
|
|
535
546
|
$flags$: number;
|
|
536
547
|
$tag$: string | number | Function;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maggioli-design-system/mds-paginator-item",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "mds-paginator-item is a web-component from Maggioli Design System Magma, built with StencilJS, TypeScript, Storybook. It's based on the web-component standard and it's designed to be agnostic from the JavaScirpt framework you are using.",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.js",
|
package/readme.md
CHANGED
|
@@ -14,6 +14,26 @@
|
|
|
14
14
|
| `icon` | `icon` | Specifies the icon used inside the paginator item | `string` | `undefined` |
|
|
15
15
|
|
|
16
16
|
|
|
17
|
+
## CSS Custom Properties
|
|
18
|
+
|
|
19
|
+
| Name | Description |
|
|
20
|
+
| ------------------------------------------ | --------------------------------------------------------------- |
|
|
21
|
+
| `--mds-paginator-item-background` | Sets the background-color of the pages area and the item |
|
|
22
|
+
| `--mds-paginator-item-background-disabled` | Sets the background-color of the item when is disabled |
|
|
23
|
+
| `--mds-paginator-item-background-hover` | Sets the background-color of the item when the mouse is over it |
|
|
24
|
+
| `--mds-paginator-item-background-selected` | Sets the background-color of the item when is selected |
|
|
25
|
+
| `--mds-paginator-item-color` | Sets the text color of the component |
|
|
26
|
+
| `--mds-paginator-item-color-disabled` | Sets the color of the item when is disabled |
|
|
27
|
+
| `--mds-paginator-item-color-hover` | Sets the text color of the item when the mouse is over it |
|
|
28
|
+
| `--mds-paginator-item-color-selected` | Sets the text color of the item when is selected |
|
|
29
|
+
| `--mds-paginator-item-radius` | Sets the border-radius of the component |
|
|
30
|
+
| `--mds-paginator-item-shadow` | Sets the box-shadow of the component |
|
|
31
|
+
| `--mds-paginator-item-shadow-disabled` | Sets the box-shadow of the item when is disabled |
|
|
32
|
+
| `--mds-paginator-item-shadow-hover` | Sets the box-shadow of the item when the mouse is over it |
|
|
33
|
+
| `--mds-paginator-item-shadow-selected` | Sets the box-shadow of the item when is selected |
|
|
34
|
+
| `--mds-paginator-item-size` | Sets the height and the min-width of the paginator item |
|
|
35
|
+
|
|
36
|
+
|
|
17
37
|
## Dependencies
|
|
18
38
|
|
|
19
39
|
### Used by
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@tailwind utilities;
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
4
|
* @prop --mds-paginator-item-background-disabled: Sets the background-color of the item when is disabled
|
|
5
5
|
* @prop --mds-paginator-item-background-hover: Sets the background-color of the item when the mouse is over it
|
|
6
6
|
* @prop --mds-paginator-item-background-selected: Sets the background-color of the item when is selected
|
|
@@ -14,6 +14,26 @@
|
|
|
14
14
|
| `icon` | `icon` | Specifies the icon used inside the paginator item | `string` | `undefined` |
|
|
15
15
|
|
|
16
16
|
|
|
17
|
+
## CSS Custom Properties
|
|
18
|
+
|
|
19
|
+
| Name | Description |
|
|
20
|
+
| ------------------------------------------ | --------------------------------------------------------------- |
|
|
21
|
+
| `--mds-paginator-item-background` | Sets the background-color of the pages area and the item |
|
|
22
|
+
| `--mds-paginator-item-background-disabled` | Sets the background-color of the item when is disabled |
|
|
23
|
+
| `--mds-paginator-item-background-hover` | Sets the background-color of the item when the mouse is over it |
|
|
24
|
+
| `--mds-paginator-item-background-selected` | Sets the background-color of the item when is selected |
|
|
25
|
+
| `--mds-paginator-item-color` | Sets the text color of the component |
|
|
26
|
+
| `--mds-paginator-item-color-disabled` | Sets the color of the item when is disabled |
|
|
27
|
+
| `--mds-paginator-item-color-hover` | Sets the text color of the item when the mouse is over it |
|
|
28
|
+
| `--mds-paginator-item-color-selected` | Sets the text color of the item when is selected |
|
|
29
|
+
| `--mds-paginator-item-radius` | Sets the border-radius of the component |
|
|
30
|
+
| `--mds-paginator-item-shadow` | Sets the box-shadow of the component |
|
|
31
|
+
| `--mds-paginator-item-shadow-disabled` | Sets the box-shadow of the item when is disabled |
|
|
32
|
+
| `--mds-paginator-item-shadow-hover` | Sets the box-shadow of the item when the mouse is over it |
|
|
33
|
+
| `--mds-paginator-item-shadow-selected` | Sets the box-shadow of the item when is selected |
|
|
34
|
+
| `--mds-paginator-item-size` | Sets the height and the min-width of the paginator item |
|
|
35
|
+
|
|
36
|
+
|
|
17
37
|
----------------------------------------------
|
|
18
38
|
|
|
19
39
|
Built with love @ **Maggioli Informatica / R&D Department**
|
package/src/dictionary/icon.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import jsonIconsDictionary from '../fixtures/icons.json'
|
|
2
|
+
import jsonMggIconsDictionary from '../fixtures/iconsauce.json'
|
|
2
3
|
const iconsDictionary = jsonIconsDictionary
|
|
4
|
+
const mggIconsDictionary = jsonMggIconsDictionary
|
|
5
|
+
|
|
3
6
|
export {
|
|
4
7
|
iconsDictionary,
|
|
8
|
+
mggIconsDictionary,
|
|
5
9
|
}
|
package/src/fixtures/icons.json
CHANGED
|
@@ -10,6 +10,179 @@
|
|
|
10
10
|
"mdi/map-marker",
|
|
11
11
|
"mdi/replay",
|
|
12
12
|
"mdi/vector-curve",
|
|
13
|
+
"mgg/abitazione-principale",
|
|
14
|
+
"mgg/action-hide-down-side",
|
|
15
|
+
"mgg/action-hide-left-side",
|
|
16
|
+
"mgg/action-hide-right-side",
|
|
17
|
+
"mgg/action-hide-sidebar-left",
|
|
18
|
+
"mgg/action-hide-sidebar-right",
|
|
19
|
+
"mgg/action-show-down-side",
|
|
20
|
+
"mgg/action-show-left-side",
|
|
21
|
+
"mgg/action-show-right-side",
|
|
22
|
+
"mgg/action-show-sidebar-left",
|
|
23
|
+
"mgg/action-show-sidebar-right",
|
|
24
|
+
"mgg/add-document-settings",
|
|
25
|
+
"mgg/additional-contents",
|
|
26
|
+
"mgg/address-book-off",
|
|
27
|
+
"mgg/address-book-on",
|
|
28
|
+
"mgg/adv-denied",
|
|
29
|
+
"mgg/area-edificabile",
|
|
30
|
+
"mgg/area-weather",
|
|
31
|
+
"mgg/box-multiple",
|
|
32
|
+
"mgg/breadcrumb",
|
|
33
|
+
"mgg/calendar-euro",
|
|
34
|
+
"mgg/calendar-multiple",
|
|
35
|
+
"mgg/calendar-schedule",
|
|
36
|
+
"mgg/car-license",
|
|
37
|
+
"mgg/card-stamping",
|
|
38
|
+
"mgg/checklist",
|
|
39
|
+
"mgg/checklist-settings",
|
|
40
|
+
"mgg/citizenship",
|
|
41
|
+
"mgg/city-bin",
|
|
42
|
+
"mgg/copy-paste",
|
|
43
|
+
"mgg/data-analytics-alt",
|
|
44
|
+
"mgg/data-analytics-search",
|
|
45
|
+
"mgg/data-analytics-time",
|
|
46
|
+
"mgg/data-category-alt",
|
|
47
|
+
"mgg/data-civil-union",
|
|
48
|
+
"mgg/data-death-civil-union",
|
|
49
|
+
"mgg/data-death-marriage",
|
|
50
|
+
"mgg/data-end-civil-union",
|
|
51
|
+
"mgg/data-end-marriage",
|
|
52
|
+
"mgg/dataset",
|
|
53
|
+
"mgg/document-magic",
|
|
54
|
+
"mgg/document-rename",
|
|
55
|
+
"mgg/electronic-document",
|
|
56
|
+
"mgg/email-open-check",
|
|
57
|
+
"mgg/email-open-off",
|
|
58
|
+
"mgg/face-to-face-meeting",
|
|
59
|
+
"mgg/farmer",
|
|
60
|
+
"mgg/field",
|
|
61
|
+
"mgg/file-download",
|
|
62
|
+
"mgg/file-folder-tree",
|
|
63
|
+
"mgg/file-folder-tree-open",
|
|
64
|
+
"mgg/file-import",
|
|
65
|
+
"mgg/file-odt",
|
|
66
|
+
"mgg/file-rtf",
|
|
67
|
+
"mgg/file-settings-alt",
|
|
68
|
+
"mgg/file-stack",
|
|
69
|
+
"mgg/file-stack-alt",
|
|
70
|
+
"mgg/file-sub",
|
|
71
|
+
"mgg/file-type-document-attachment",
|
|
72
|
+
"mgg/file-type-document-multiple-attachment",
|
|
73
|
+
"mgg/file-type-document-rubber-stamp",
|
|
74
|
+
"mgg/file-type-home",
|
|
75
|
+
"mgg/file-type-pdf",
|
|
76
|
+
"mgg/file-type-success",
|
|
77
|
+
"mgg/file-type-warning",
|
|
78
|
+
"mgg/finance-euro-cashback",
|
|
79
|
+
"mgg/fit-horizontal",
|
|
80
|
+
"mgg/fit-vertical",
|
|
81
|
+
"mgg/fullscreen-on-alt",
|
|
82
|
+
"mgg/google-check-small",
|
|
83
|
+
"mgg/google-place-item",
|
|
84
|
+
"mgg/heart",
|
|
85
|
+
"mgg/heart-outline",
|
|
86
|
+
"mgg/historic-building",
|
|
87
|
+
"mgg/historic-building-unusable",
|
|
88
|
+
"mgg/home-hammer",
|
|
89
|
+
"mgg/home-number",
|
|
90
|
+
"mgg/inagibile",
|
|
91
|
+
"mgg/input-calendar-costs",
|
|
92
|
+
"mgg/input-calendar-period",
|
|
93
|
+
"mgg/input-calendar-time",
|
|
94
|
+
"mgg/isbn",
|
|
95
|
+
"mgg/judge-hammer",
|
|
96
|
+
"mgg/land-registry",
|
|
97
|
+
"mgg/layers",
|
|
98
|
+
"mgg/list-dot",
|
|
99
|
+
"mgg/logo-girasole-camuno",
|
|
100
|
+
"mgg/logo-gpl",
|
|
101
|
+
"mgg/logo-ilibro",
|
|
102
|
+
"mgg/map-marker-settings",
|
|
103
|
+
"mgg/military-draft",
|
|
104
|
+
"mgg/money-bag-settings",
|
|
105
|
+
"mgg/money-on-hand",
|
|
106
|
+
"mgg/move-down",
|
|
107
|
+
"mgg/move-left",
|
|
108
|
+
"mgg/move-right",
|
|
109
|
+
"mgg/move-row-down",
|
|
110
|
+
"mgg/move-row-up",
|
|
111
|
+
"mgg/move-up",
|
|
112
|
+
"mgg/multiple-payments",
|
|
113
|
+
"mgg/national-document",
|
|
114
|
+
"mgg/national-document-off",
|
|
115
|
+
"mgg/order-return-down-left-to-right",
|
|
116
|
+
"mgg/order-return-down-left-to-up",
|
|
117
|
+
"mgg/order-return-down-right-to-left",
|
|
118
|
+
"mgg/order-return-down-right-to-up",
|
|
119
|
+
"mgg/order-return-up-left-to-down",
|
|
120
|
+
"mgg/order-return-up-left-to-right",
|
|
121
|
+
"mgg/order-return-up-right-to-down",
|
|
122
|
+
"mgg/order-return-up-right-to-left",
|
|
123
|
+
"mgg/order-zigzag-down-left-to-right",
|
|
124
|
+
"mgg/order-zigzag-down-left-to-up",
|
|
125
|
+
"mgg/order-zigzag-down-right-to-left",
|
|
126
|
+
"mgg/order-zigzag-down-right-to-up",
|
|
127
|
+
"mgg/order-zigzag-up-left-to-down",
|
|
128
|
+
"mgg/order-zigzag-up-left-to-right",
|
|
129
|
+
"mgg/order-zigzag-up-right-to-down",
|
|
130
|
+
"mgg/order-zigzag-up-right-to-left",
|
|
131
|
+
"mgg/other-properties",
|
|
132
|
+
"mgg/other-properties-off",
|
|
133
|
+
"mgg/partial-wall",
|
|
134
|
+
"mgg/payment-settings",
|
|
135
|
+
"mgg/places-green",
|
|
136
|
+
"mgg/places-green-doc",
|
|
137
|
+
"mgg/places-green-history",
|
|
138
|
+
"mgg/places-green-info",
|
|
139
|
+
"mgg/places-holiday-beach",
|
|
140
|
+
"mgg/places-market",
|
|
141
|
+
"mgg/places-park",
|
|
142
|
+
"mgg/places-park-alt",
|
|
143
|
+
"mgg/places-store-access-denied",
|
|
144
|
+
"mgg/property-owner",
|
|
145
|
+
"mgg/relevance",
|
|
146
|
+
"mgg/reporting-abuse",
|
|
147
|
+
"mgg/residency-permit",
|
|
148
|
+
"mgg/rubber-stamp",
|
|
149
|
+
"mgg/rurale",
|
|
150
|
+
"mgg/search-maggioli",
|
|
151
|
+
"mgg/send-progress",
|
|
152
|
+
"mgg/settings-attachment",
|
|
153
|
+
"mgg/sign-shop",
|
|
154
|
+
"mgg/square-viewfinder",
|
|
155
|
+
"mgg/stamp",
|
|
156
|
+
"mgg/status-progress-a-quarter",
|
|
157
|
+
"mgg/status-progress-complete",
|
|
158
|
+
"mgg/status-progress-half",
|
|
159
|
+
"mgg/status-progress-three-quarter",
|
|
160
|
+
"mgg/stuck-codes",
|
|
161
|
+
"mgg/tea-light",
|
|
162
|
+
"mgg/terminal",
|
|
163
|
+
"mgg/todo",
|
|
164
|
+
"mgg/todo-completed",
|
|
165
|
+
"mgg/todo-completed-re-executable",
|
|
166
|
+
"mgg/todo-in-charge-by-me",
|
|
167
|
+
"mgg/todo-in-charge-by-others",
|
|
168
|
+
"mgg/todo-in-evaluation",
|
|
169
|
+
"mgg/todo-in-evaluation-by-others",
|
|
170
|
+
"mgg/todo-incoming-in-charge",
|
|
171
|
+
"mgg/todo-incoming-rejected",
|
|
172
|
+
"mgg/todo-pause",
|
|
173
|
+
"mgg/todo-running-completed",
|
|
174
|
+
"mgg/todo-suspended",
|
|
175
|
+
"mgg/traffic-cone",
|
|
176
|
+
"mgg/trending-down",
|
|
177
|
+
"mgg/tributes",
|
|
178
|
+
"mgg/urban-city",
|
|
179
|
+
"mgg/user-dead",
|
|
180
|
+
"mgg/user-family",
|
|
181
|
+
"mgg/user-location",
|
|
182
|
+
"mgg/user-location-off",
|
|
183
|
+
"mgg/view-chart-gantt",
|
|
184
|
+
"mgg/view-side-by-side",
|
|
185
|
+
"mgg/work-book",
|
|
13
186
|
"mi/baseline/account-balance",
|
|
14
187
|
"mi/baseline/account-balance-wallet",
|
|
15
188
|
"mi/baseline/adobe",
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
[
|
|
2
|
+
"mgg/abitazione-principale",
|
|
3
|
+
"mgg/action-hide-down-side",
|
|
4
|
+
"mgg/action-hide-left-side",
|
|
5
|
+
"mgg/action-hide-right-side",
|
|
6
|
+
"mgg/action-hide-sidebar-left",
|
|
7
|
+
"mgg/action-hide-sidebar-right",
|
|
8
|
+
"mgg/action-show-down-side",
|
|
9
|
+
"mgg/action-show-left-side",
|
|
10
|
+
"mgg/action-show-right-side",
|
|
11
|
+
"mgg/action-show-sidebar-left",
|
|
12
|
+
"mgg/action-show-sidebar-right",
|
|
13
|
+
"mgg/add-document-settings",
|
|
14
|
+
"mgg/additional-contents",
|
|
15
|
+
"mgg/address-book-off",
|
|
16
|
+
"mgg/address-book-on",
|
|
17
|
+
"mgg/adv-denied",
|
|
18
|
+
"mgg/area-edificabile",
|
|
19
|
+
"mgg/area-weather",
|
|
20
|
+
"mgg/box-multiple",
|
|
21
|
+
"mgg/breadcrumb",
|
|
22
|
+
"mgg/calendar-euro",
|
|
23
|
+
"mgg/calendar-multiple",
|
|
24
|
+
"mgg/calendar-schedule",
|
|
25
|
+
"mgg/car-license",
|
|
26
|
+
"mgg/card-stamping",
|
|
27
|
+
"mgg/checklist-settings",
|
|
28
|
+
"mgg/checklist",
|
|
29
|
+
"mgg/citizenship",
|
|
30
|
+
"mgg/city-bin",
|
|
31
|
+
"mgg/copy-paste",
|
|
32
|
+
"mgg/data-analytics-alt",
|
|
33
|
+
"mgg/data-analytics-search",
|
|
34
|
+
"mgg/data-analytics-time",
|
|
35
|
+
"mgg/data-category-alt",
|
|
36
|
+
"mgg/data-civil-union",
|
|
37
|
+
"mgg/data-death-civil-union",
|
|
38
|
+
"mgg/data-death-marriage",
|
|
39
|
+
"mgg/data-end-civil-union",
|
|
40
|
+
"mgg/data-end-marriage",
|
|
41
|
+
"mgg/dataset",
|
|
42
|
+
"mgg/document-magic",
|
|
43
|
+
"mgg/document-rename",
|
|
44
|
+
"mgg/electronic-document",
|
|
45
|
+
"mgg/email-open-check",
|
|
46
|
+
"mgg/email-open-off",
|
|
47
|
+
"mgg/face-to-face-meeting",
|
|
48
|
+
"mgg/farmer",
|
|
49
|
+
"mgg/field",
|
|
50
|
+
"mgg/file-download",
|
|
51
|
+
"mgg/file-folder-tree-open",
|
|
52
|
+
"mgg/file-folder-tree",
|
|
53
|
+
"mgg/file-import",
|
|
54
|
+
"mgg/file-odt",
|
|
55
|
+
"mgg/file-rtf",
|
|
56
|
+
"mgg/file-settings-alt",
|
|
57
|
+
"mgg/file-stack-alt",
|
|
58
|
+
"mgg/file-stack",
|
|
59
|
+
"mgg/file-sub",
|
|
60
|
+
"mgg/file-type-document-attachment",
|
|
61
|
+
"mgg/file-type-document-multiple-attachment",
|
|
62
|
+
"mgg/file-type-document-rubber-stamp",
|
|
63
|
+
"mgg/file-type-home",
|
|
64
|
+
"mgg/file-type-pdf",
|
|
65
|
+
"mgg/file-type-success",
|
|
66
|
+
"mgg/file-type-warning",
|
|
67
|
+
"mgg/finance-euro-cashback",
|
|
68
|
+
"mgg/fit-horizontal",
|
|
69
|
+
"mgg/fit-vertical",
|
|
70
|
+
"mgg/fullscreen-on-alt",
|
|
71
|
+
"mgg/google-check-small",
|
|
72
|
+
"mgg/google-place-item",
|
|
73
|
+
"mgg/heart-outline",
|
|
74
|
+
"mgg/heart",
|
|
75
|
+
"mgg/historic-building-unusable",
|
|
76
|
+
"mgg/historic-building",
|
|
77
|
+
"mgg/home-hammer",
|
|
78
|
+
"mgg/home-number",
|
|
79
|
+
"mgg/inagibile",
|
|
80
|
+
"mgg/input-calendar-costs",
|
|
81
|
+
"mgg/input-calendar-period",
|
|
82
|
+
"mgg/input-calendar-time",
|
|
83
|
+
"mgg/isbn",
|
|
84
|
+
"mgg/judge-hammer",
|
|
85
|
+
"mgg/land-registry",
|
|
86
|
+
"mgg/layers",
|
|
87
|
+
"mgg/list-dot",
|
|
88
|
+
"mgg/logo-girasole-camuno",
|
|
89
|
+
"mgg/logo-gpl",
|
|
90
|
+
"mgg/logo-ilibro",
|
|
91
|
+
"mgg/map-marker-settings",
|
|
92
|
+
"mgg/military-draft",
|
|
93
|
+
"mgg/money-bag-settings",
|
|
94
|
+
"mgg/money-on-hand",
|
|
95
|
+
"mgg/move-down",
|
|
96
|
+
"mgg/move-left",
|
|
97
|
+
"mgg/move-right",
|
|
98
|
+
"mgg/move-row-down",
|
|
99
|
+
"mgg/move-row-up",
|
|
100
|
+
"mgg/move-up",
|
|
101
|
+
"mgg/multiple-payments",
|
|
102
|
+
"mgg/national-document-off",
|
|
103
|
+
"mgg/national-document",
|
|
104
|
+
"mgg/order-return-down-left-to-right",
|
|
105
|
+
"mgg/order-return-down-left-to-up",
|
|
106
|
+
"mgg/order-return-down-right-to-left",
|
|
107
|
+
"mgg/order-return-down-right-to-up",
|
|
108
|
+
"mgg/order-return-up-left-to-down",
|
|
109
|
+
"mgg/order-return-up-left-to-right",
|
|
110
|
+
"mgg/order-return-up-right-to-down",
|
|
111
|
+
"mgg/order-return-up-right-to-left",
|
|
112
|
+
"mgg/order-zigzag-down-left-to-right",
|
|
113
|
+
"mgg/order-zigzag-down-left-to-up",
|
|
114
|
+
"mgg/order-zigzag-down-right-to-left",
|
|
115
|
+
"mgg/order-zigzag-down-right-to-up",
|
|
116
|
+
"mgg/order-zigzag-up-left-to-down",
|
|
117
|
+
"mgg/order-zigzag-up-left-to-right",
|
|
118
|
+
"mgg/order-zigzag-up-right-to-down",
|
|
119
|
+
"mgg/order-zigzag-up-right-to-left",
|
|
120
|
+
"mgg/other-properties-off",
|
|
121
|
+
"mgg/other-properties",
|
|
122
|
+
"mgg/partial-wall",
|
|
123
|
+
"mgg/payment-settings",
|
|
124
|
+
"mgg/places-green-doc",
|
|
125
|
+
"mgg/places-green-history",
|
|
126
|
+
"mgg/places-green-info",
|
|
127
|
+
"mgg/places-green",
|
|
128
|
+
"mgg/places-holiday-beach",
|
|
129
|
+
"mgg/places-market",
|
|
130
|
+
"mgg/places-park-alt",
|
|
131
|
+
"mgg/places-park",
|
|
132
|
+
"mgg/places-store-access-denied",
|
|
133
|
+
"mgg/property-owner",
|
|
134
|
+
"mgg/relevance",
|
|
135
|
+
"mgg/reporting-abuse",
|
|
136
|
+
"mgg/residency-permit",
|
|
137
|
+
"mgg/rubber-stamp",
|
|
138
|
+
"mgg/rurale",
|
|
139
|
+
"mgg/search-maggioli",
|
|
140
|
+
"mgg/send-progress",
|
|
141
|
+
"mgg/settings-attachment",
|
|
142
|
+
"mgg/sign-shop",
|
|
143
|
+
"mgg/square-viewfinder",
|
|
144
|
+
"mgg/stamp",
|
|
145
|
+
"mgg/status-progress-a-quarter",
|
|
146
|
+
"mgg/status-progress-complete",
|
|
147
|
+
"mgg/status-progress-half",
|
|
148
|
+
"mgg/status-progress-three-quarter",
|
|
149
|
+
"mgg/stuck-codes",
|
|
150
|
+
"mgg/tea-light",
|
|
151
|
+
"mgg/terminal",
|
|
152
|
+
"mgg/todo-completed-re-executable",
|
|
153
|
+
"mgg/todo-completed",
|
|
154
|
+
"mgg/todo-in-charge-by-me",
|
|
155
|
+
"mgg/todo-in-charge-by-others",
|
|
156
|
+
"mgg/todo-in-evaluation-by-others",
|
|
157
|
+
"mgg/todo-in-evaluation",
|
|
158
|
+
"mgg/todo-incoming-in-charge",
|
|
159
|
+
"mgg/todo-incoming-rejected",
|
|
160
|
+
"mgg/todo-pause",
|
|
161
|
+
"mgg/todo-running-completed",
|
|
162
|
+
"mgg/todo-suspended",
|
|
163
|
+
"mgg/todo",
|
|
164
|
+
"mgg/traffic-cone",
|
|
165
|
+
"mgg/trending-down",
|
|
166
|
+
"mgg/tributes",
|
|
167
|
+
"mgg/urban-city",
|
|
168
|
+
"mgg/user-dead",
|
|
169
|
+
"mgg/user-family",
|
|
170
|
+
"mgg/user-location-off",
|
|
171
|
+
"mgg/user-location",
|
|
172
|
+
"mgg/view-chart-gantt",
|
|
173
|
+
"mgg/view-side-by-side",
|
|
174
|
+
"mgg/work-book"
|
|
175
|
+
]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as
|
|
1
|
+
import{p as e,b as a}from"./p-3174ae8b.js";export{s as setNonce}from"./p-3174ae8b.js";(()=>{const s=import.meta.url,a={};return""!==s&&(a.resourcesUrl=new URL(".",s).href),e(a)})().then((e=>a([["p-308f54f9",[[1,"mds-paginator-item",{icon:[1],active:[516],disabled:[516]}]]]],e)));
|
|
@@ -115,7 +115,7 @@ DOMTokenList
|
|
|
115
115
|
var resourcesUrl = scriptElm ? scriptElm.getAttribute('data-resources-url') || scriptElm.src : '';
|
|
116
116
|
var start = function() {
|
|
117
117
|
// if src is not present then origin is "null", and new URL() throws TypeError: Failed to construct 'URL': Invalid base URL
|
|
118
|
-
var url = new URL('./p-
|
|
118
|
+
var url = new URL('./p-711f7cb4.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
|
|
119
119
|
System.import(url.href);
|
|
120
120
|
};
|
|
121
121
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as o,h as r,H as t}from"./p-
|
|
1
|
+
import{r as o,h as r,H as t}from"./p-3174ae8b.js";function a(o){var r,t,e="";if("string"==typeof o||"number"==typeof o)e+=o;else if("object"==typeof o)if(Array.isArray(o))for(r=0;r<o.length;r++)o[r]&&(t=a(o[r]))&&(e&&(e+=" "),e+=t);else for(r in o)o[r]&&(e&&(e+=" "),e+=r);return e}function e(){for(var o,r,t=0,e="";t<arguments.length;)(o=arguments[t++])&&(r=a(o))&&(e&&(e+=" "),e+=r);return e}const i=class{constructor(r){o(this,r),this.icon=void 0,this.active=void 0,this.disabled=void 0}render(){return r(t,{class:e(this.active&&"active",this.disabled&&"disabled",this.icon&&"icon")},void 0!==this.icon?r("mds-icon",{name:this.icon}):r("mds-text",{class:"text",typography:"detail"},r("slot",null)))}};i.style=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{--mds-paginator-item-background-disabled:rgb(var(--tone-neutral-09));--mds-paginator-item-background-hover:rgb(var(--tone-neutral-08));--mds-paginator-item-background-selected:rgb(var(--brand-maggioli-03));--mds-paginator-item-background:rgb(var(--tone-neutral-09));--mds-paginator-item-color-disabled:rgb(var(--tone-neutral-06));--mds-paginator-item-color-hover:rgb(var(--tone-neutral-02));--mds-paginator-item-color-selected:rgb(var(--tone-neutral));--mds-paginator-item-color:rgb(var(--tone-neutral-02));--mds-paginator-item-radius:200px;--mds-paginator-item-shadow-disabled:none;--mds-paginator-item-shadow-hover:none;--mds-paginator-item-shadow-selected:0 0 1px 1px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);--mds-paginator-item-shadow:none;--mds-paginator-item-size:2.25rem;-webkit-box-sizing:border-box;box-sizing:border-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-negative:0;flex-shrink:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding-left:0.75rem;padding-right:0.75rem;-webkit-transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-transition-duration:150ms;transition-duration:150ms;background-color:var(--mds-paginator-item-background);border-radius:var(--mds-paginator-item-radius);-webkit-box-shadow:var(--mds-paginator-item-shadow);box-shadow:var(--mds-paginator-item-shadow);color:var(--mds-paginator-item-color);height:var(--mds-paginator-item-size);min-width:var(--mds-paginator-item-size)}:host(:hover){background-color:var(--mds-paginator-item-background-hover);-webkit-box-shadow:var(--mds-paginator-item-shadow-hover);box-shadow:var(--mds-paginator-item-shadow-hover);color:var(--mds-paginator-item-color-hover);fill:var(--mds-paginator-item-color-hover)}:host([active]){pointer-events:none;background-color:var(--mds-paginator-item-background-selected);-webkit-box-shadow:var(--mds-paginator-item-shadow-selected);box-shadow:var(--mds-paginator-item-shadow-selected);color:var(--mds-paginator-item-color-selected);fill:var(--mds-paginator-item-color-selected)}:host([disabled]){pointer-events:none;background-color:var(--mds-paginator-item-background-disabled);-webkit-box-shadow:var(--mds-paginator-item-shadow-disabled);box-shadow:var(--mds-paginator-item-shadow-disabled);color:var(--mds-paginator-item-color-disabled);fill:var(--mds-paginator-item-color-disabled)}.icon{padding-left:0px;padding-right:0px}";export{i as mds_paginator_item}
|
|
File without changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
System.register(["./p-
|
|
1
|
+
System.register(["./p-bad78d87.system.js"],(function(e,t){"use strict";var r,n;return{setters:[function(t){r=t.p;n=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var n={};if(e!==""){n.resourcesUrl=new URL(".",e).href}return r(n)};e().then((function(e){return n([["p-8a518aac.system",[[1,"mds-paginator-item",{icon:[1],active:[516],disabled:[516]}]]]],e)}))}}}));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
System.register(["./p-
|
|
1
|
+
System.register(["./p-bad78d87.system.js"],(function(o){"use strict";var r,e,t;return{setters:[function(o){r=o.r;e=o.h;t=o.H}],execute:function(){function a(o){var r,e,t="";if("string"==typeof o||"number"==typeof o)t+=o;else if("object"==typeof o)if(Array.isArray(o))for(r=0;r<o.length;r++)o[r]&&(e=a(o[r]))&&(t&&(t+=" "),t+=e);else for(r in o)o[r]&&(t&&(t+=" "),t+=r);return t}function i(){for(var o,r,e=0,t="";e<arguments.length;)(o=arguments[e++])&&(r=a(o))&&(t&&(t+=" "),t+=r);return t}var n=".fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.shadow{--tw-shadow:0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);-webkit-box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}:host{--mds-paginator-item-background-disabled:rgb(var(--tone-neutral-09));--mds-paginator-item-background-hover:rgb(var(--tone-neutral-08));--mds-paginator-item-background-selected:rgb(var(--brand-maggioli-03));--mds-paginator-item-background:rgb(var(--tone-neutral-09));--mds-paginator-item-color-disabled:rgb(var(--tone-neutral-06));--mds-paginator-item-color-hover:rgb(var(--tone-neutral-02));--mds-paginator-item-color-selected:rgb(var(--tone-neutral));--mds-paginator-item-color:rgb(var(--tone-neutral-02));--mds-paginator-item-radius:200px;--mds-paginator-item-shadow-disabled:none;--mds-paginator-item-shadow-hover:none;--mds-paginator-item-shadow-selected:0 0 1px 1px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);--mds-paginator-item-shadow:none;--mds-paginator-item-size:2.25rem;-webkit-box-sizing:border-box;box-sizing:border-box;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-negative:0;flex-shrink:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;padding-left:0.75rem;padding-right:0.75rem;-webkit-transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;-webkit-transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);-webkit-transition-duration:150ms;transition-duration:150ms;background-color:var(--mds-paginator-item-background);border-radius:var(--mds-paginator-item-radius);-webkit-box-shadow:var(--mds-paginator-item-shadow);box-shadow:var(--mds-paginator-item-shadow);color:var(--mds-paginator-item-color);height:var(--mds-paginator-item-size);min-width:var(--mds-paginator-item-size)}:host(:hover){background-color:var(--mds-paginator-item-background-hover);-webkit-box-shadow:var(--mds-paginator-item-shadow-hover);box-shadow:var(--mds-paginator-item-shadow-hover);color:var(--mds-paginator-item-color-hover);fill:var(--mds-paginator-item-color-hover)}:host([active]){pointer-events:none;background-color:var(--mds-paginator-item-background-selected);-webkit-box-shadow:var(--mds-paginator-item-shadow-selected);box-shadow:var(--mds-paginator-item-shadow-selected);color:var(--mds-paginator-item-color-selected);fill:var(--mds-paginator-item-color-selected)}:host([disabled]){pointer-events:none;background-color:var(--mds-paginator-item-background-disabled);-webkit-box-shadow:var(--mds-paginator-item-shadow-disabled);box-shadow:var(--mds-paginator-item-shadow-disabled);color:var(--mds-paginator-item-color-disabled);fill:var(--mds-paginator-item-color-disabled)}.icon{padding-left:0px;padding-right:0px}";var s=o("mds_paginator_item",function(){function o(o){r(this,o);this.icon=undefined;this.active=undefined;this.disabled=undefined}o.prototype.render=function(){return e(t,{class:i(this.active&&"active",this.disabled&&"disabled",this.icon&&"icon")},this.icon!==undefined?e("mds-icon",{name:this.icon}):e("mds-text",{class:"text",typography:"detail"},e("slot",null)))};return o}());s.style=n}}}));
|
|
File without changes
|