smoothly 0.1.107 → 0.1.110
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/{App-08e717a8.js → App-07654e98.js} +1 -1
- package/dist/cjs/{Notice-2496bc28.js → Notice-9445eca7.js} +1 -1
- package/dist/cjs/index.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/{smoothly-accordion_48.cjs.entry.js → smoothly-accordion_49.cjs.entry.js} +91 -66
- package/dist/cjs/smoothly-app-demo.cjs.entry.js +1 -1
- package/dist/cjs/smoothly-display-demo.cjs.entry.js +1 -1
- package/dist/cjs/smoothly-input-date.cjs.entry.js +10 -6
- package/dist/cjs/smoothly-skeleton.cjs.entry.js +27 -0
- package/dist/cjs/smoothly.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/App.js +1 -1
- package/dist/collection/components/display-demo/index.js +12 -0
- package/dist/collection/components/input-date/index.js +29 -8
- package/dist/collection/components/skeleton/index.js +128 -0
- package/dist/collection/components/skeleton/style.css +53 -0
- package/dist/custom-elements/index.d.ts +6 -0
- package/dist/custom-elements/index.js +100 -73
- package/dist/{smoothly/App-33847333.js → esm/App-b37cce14.js} +1 -1
- package/dist/esm/{Notice-819c6f49.js → Notice-402f146e.js} +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/{smoothly-accordion_48.entry.js → smoothly-accordion_49.entry.js} +91 -67
- package/dist/esm/smoothly-app-demo.entry.js +1 -1
- package/dist/esm/smoothly-display-demo.entry.js +1 -1
- package/dist/esm/smoothly-input-date.entry.js +10 -6
- package/dist/esm/smoothly-skeleton.entry.js +23 -0
- package/dist/esm/smoothly.js +1 -1
- package/dist/{esm/App-33847333.js → smoothly/App-b37cce14.js} +1 -1
- package/dist/smoothly/index.esm.js +1 -1
- package/dist/smoothly/{p-d14fb035.entry.js → p-075d2106.entry.js} +1 -1
- package/dist/smoothly/{p-14c6de14.js → p-bf3e451c.js} +1 -1
- package/dist/smoothly/smoothly-app-demo.entry.js +1 -1
- package/dist/smoothly/smoothly-display-demo.entry.js +1 -1
- package/dist/smoothly/smoothly-input-date.entry.js +10 -6
- package/dist/smoothly/smoothly-skeleton.entry.js +23 -0
- package/dist/smoothly/smoothly.esm.js +1 -1
- package/dist/types/components/input-date/index.d.ts +1 -0
- package/dist/types/components/skeleton/index.d.ts +10 -0
- package/dist/types/components.d.ts +27 -0
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
|
+
|
|
5
|
+
const index = require('./index-138c41c2.js');
|
|
6
|
+
|
|
7
|
+
const styleCss = ".sc-smoothly-skeleton-h{display:block;height:1rem}.sc-smoothly-skeleton-h::before{content:\"\";display:block;width:var(--width);height:100%;border-radius:0.4rem;background-image:linear-gradient(90deg, rgb(var(--color, var(--smoothly-dark-color))) 0, transparent 2.5rem, rgb(var(--color, var(--smoothly-dark-color))) 5rem);background-size:calc(var(--distance) + 5rem);animation-duration:var(--period, 1.6s);animation-iteration-count:infinite;animation-timing-function:linear;animation-name:shine-lines-left}@keyframes shine-lines-left{0%{background-position:-5rem}40%,100%{background-position:var(--distance)}}[align=center].sc-smoothly-skeleton-h::before{margin:0 auto;animation-name:shine-lines-center}@keyframes shine-lines-center{0%{background-position:calc((var(--width) - var(--distance)) / 2 - 5rem)}40%,100%{background-position:calc(var(--width) + (var(--distance) - var(--width)) / 2)}}[align=right].sc-smoothly-skeleton-h::before{margin:0;margin-left:auto;animation-name:shine-lines-right}@keyframes shine-lines-right{0%{background-position:calc(var(--width) - var(--distance) - 5rem)}40%,100%{background-position:var(--width)}}";
|
|
8
|
+
|
|
9
|
+
let SmoothlySkeleton = class {
|
|
10
|
+
constructor(hostRef) {
|
|
11
|
+
index.registerInstance(this, hostRef);
|
|
12
|
+
this.widths = ["8rem", "9rem", "10rem"];
|
|
13
|
+
this.align = "left";
|
|
14
|
+
}
|
|
15
|
+
componentWillLoad() {
|
|
16
|
+
var _a;
|
|
17
|
+
this.width = (_a = this.width) !== null && _a !== void 0 ? _a : this.widths[Math.floor(Math.random() * this.widths.length)];
|
|
18
|
+
}
|
|
19
|
+
render() {
|
|
20
|
+
var _a;
|
|
21
|
+
const cssVariables = Object.assign(Object.assign({ "--width": this.width, "--distance": (_a = this.distance) !== null && _a !== void 0 ? _a : "10rem" }, (this.color ? { "--color": this.color } : undefined)), (this.period ? { "--period": this.period + "s" } : undefined));
|
|
22
|
+
return index.h(index.Host, { style: cssVariables });
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
SmoothlySkeleton.style = styleCss;
|
|
26
|
+
|
|
27
|
+
exports.smoothly_skeleton = SmoothlySkeleton;
|
package/dist/cjs/smoothly.cjs.js
CHANGED
|
@@ -123,5 +123,5 @@ const patchCloneNodeFix = (HTMLElementPrototype) => {
|
|
|
123
123
|
|
|
124
124
|
patchBrowser().then(options => {
|
|
125
125
|
appGlobals.globalScripts();
|
|
126
|
-
return index.bootstrapLazy([["smoothly-app-demo.cjs",[[
|
|
126
|
+
return index.bootstrapLazy([["smoothly-app-demo.cjs",[[4,"smoothly-app-demo",{"baseUrl":[1,"base-url"]}]]],["smoothly-google-font.cjs",[[2,"smoothly-google-font",{"value":[1]}]]],["smoothly-radio-group.cjs",[[4,"smoothly-radio-group",{"orientation":[513]}]]],["smoothly-reorder.cjs",[[0,"smoothly-reorder"]]],["smoothly-trigger-sink.cjs",[[6,"smoothly-trigger-sink",{"context":[16],"destination":[1],"filter":[1]},[[0,"trigger","TriggerListener"]]]]],["smoothly-trigger-source.cjs",[[6,"smoothly-trigger-source",{"listen":[1]}]]],["smoothly-input-demo.cjs",[[0,"smoothly-input-demo"]]],["smoothly-select-demo.cjs",[[2,"smoothly-select-demo",null,[[0,"selectionChanged","handleSelectionChanged"]]]]],["smoothly-display-demo.cjs",[[0,"smoothly-display-demo"]]],["smoothly-table-demo.cjs",[[2,"smoothly-table-demo"]]],["smoothly-app.cjs",[[4,"smoothly-app",{"color":[1]}]]],["smoothly-dialog-demo.cjs",[[0,"smoothly-dialog-demo"]]],["smoothly-icon-demo.cjs",[[2,"smoothly-icon-demo"]]],["smoothly-room.cjs",[[4,"smoothly-room",{"label":[1],"icon":[1],"path":[1],"to":[1]}]]],["smoothly-input-date-range.cjs",[[2,"smoothly-input-date-range",{"value":[1025],"start":[1025],"end":[1025],"max":[1025],"min":[1025],"open":[1028],"showLabel":[516,"show-label"]},[[0,"startChanged","onStartChanged"],[0,"endChanged","onEndChanged"],[0,"dateRangeSet","onDateRangeSet"]]]]],["smoothly-notifier.cjs",[[6,"smoothly-notifier",{"notices":[32]},[[0,"notice","onNotice"],[0,"remove","onRemove"]]]]],["smoothly-picker.cjs",[[1,"smoothly-picker",{"maxMenuHeight":[1,"max-menu-height"],"maxHeight":[1,"max-height"],"emptyMenuLabel":[1025,"empty-menu-label"],"multiple":[516],"optionStyle":[8,"option-style"],"options":[16],"labelSetting":[513,"label-setting"],"label":[513],"selections":[1040],"selectNoneName":[1025,"select-none-name"],"selectionName":[1025,"selection-name"],"isOpen":[32]},[[0,"optionSelect","optionSelectHander"]]]]],["smoothly-dialog.cjs",[[6,"smoothly-dialog",{"color":[513],"open":[1540],"closable":[516],"header":[513]},[[0,"trigger","TriggerListener"]]]]],["smoothly-backtotop.cjs",[[2,"smoothly-backtotop",{"opacity":[1],"bottom":[1],"right":[1],"visible":[32]}]]],["smoothly-checkbox.cjs",[[2,"smoothly-checkbox",{"selectAll":[4,"select-all"],"size":[1],"intermediate":[1540],"selected":[1540],"disabled":[1540],"t":[32]}]]],["smoothly-submit.cjs",[[6,"smoothly-submit",{"processing":[1540],"color":[513],"expand":[513],"fill":[513],"disabled":[516],"prevent":[4],"submit":[64]},[[0,"click","handleSubmit"]]]]],["smoothly-urlencoded.cjs",[[0,"smoothly-urlencoded",{"data":[1]}]]],["smoothly-accordion.cjs",[[6,"smoothly-accordion",{"value":[1025]},[[0,"smoothlyOpen","handleOpenClose"],[0,"smoothlyClose","handleOpenClose"],[0,"smoothlyAccordionItemDidLoad","onAccordionItemDidLoad"],[0,"smoothlyAccordionItemDidUnload","onAccordionItemDidUnload"]]]]],["smoothly-accordion-item.cjs",[[6,"smoothly-accordion-item",{"name":[1],"brand":[1],"open":[1540]}]]],["smoothly-display-amount.cjs",[[2,"smoothly-display-amount",{"amount":[8],"currency":[1]}]]],["smoothly-frame.cjs",[[2,"smoothly-frame",{"url":[1],"name":[1],"origin":[1],"send":[64]}]]],["smoothly-popup.cjs",[[6,"smoothly-popup",{"visible":[1540],"direction":[1537],"cssVariables":[32]}]]],["smoothly-quiet.cjs",[[6,"smoothly-quiet",{"color":[1]}]]],["smoothly-radio.cjs",[[6,"smoothly-radio",{"name":[1],"value":[1],"checked":[1540],"tabIndex":[2,"tab-index"]}]]],["smoothly-select.cjs",[[6,"smoothly-select",{"identifier":[1],"background":[513],"value":[1025]}]]],["smoothly-skeleton.cjs",[[2,"smoothly-skeleton",{"widths":[16],"width":[1],"color":[1],"period":[2],"distance":[1],"align":[513]}]]],["smoothly-tab.cjs",[[6,"smoothly-tab",{"label":[1],"open":[1540]},[[0,"click","onClick"]]]]],["smoothly-tab-switch.cjs",[[6,"smoothly-tab-switch",{"selectedElement":[32]},[[0,"expansionOpen","openChanged"]]]]],["smoothly-table.cjs",[[6,"smoothly-table",null,[[0,"sort","onSort"]]]]],["smoothly-table-cell.cjs",[[6,"smoothly-table-cell"]]],["smoothly-table-expandable-cell.cjs",[[6,"smoothly-table-expandable-cell",{"align":[1],"open":[1540],"beginOpen":[32]},[[0,"click","onClick"]]]]],["smoothly-table-expandable-row.cjs",[[6,"smoothly-table-expandable-row",null,[[0,"expansionLoaded","onExpansionLoaded"],[0,"expansionOpen","onDetailsLoaded"]]]]],["smoothly-table-header.cjs",[[6,"smoothly-table-header",{"name":[1],"sortDirection":[1025,"sort-direction"]},[[0,"click","onClick"]]]]],["smoothly-table-row.cjs",[[6,"smoothly-table-row",{"align":[1],"open":[1540],"beginOpen":[32]},[[0,"click","onClick"]]]]],["smoothly-icon.cjs",[[2,"smoothly-icon",{"color":[513],"fill":[513],"name":[1],"size":[513],"toolTip":[1,"tool-tip"],"document":[32]}]]],["smoothly-input-date.cjs",[[6,"smoothly-input-date",{"value":[1025],"open":[1028],"max":[1025],"min":[1025],"disabled":[1028]},[[0,"dateSet","dateSetHandler"]]]]],["smoothly-notification.cjs",[[2,"smoothly-notification",{"notice":[16],"tick":[32]},[[0,"trigger","onTrigger"]]]]],["smoothly-menu-options.cjs",[[1,"smoothly-menu-options",{"emptyMenuLabel":[1025,"empty-menu-label"],"maxMenuHeight":[1,"max-menu-height"],"order":[4],"optionStyle":[8,"option-style"],"options":[1040],"resetHighlightOnOptionsChange":[1028,"reset-highlight-on-options-change"],"filteredOptions":[32],"highlightIndex":[32],"moveHighlight":[64],"setHighlight":[64],"getHighlighted":[64],"filterOptions":[64]},[[0,"optionHover","optionHoverHandler"]]]]],["smoothly-display.cjs",[[2,"smoothly-display",{"type":[1],"value":[8],"currency":[1],"country":[1]}]]],["smoothly-display-date-time.cjs",[[2,"smoothly-display-date-time",{"datetime":[1]}]]],["smoothly-tuple.cjs",[[0,"smoothly-tuple",{"tuple":[16]}]]],["smoothly-option.cjs",[[1,"smoothly-option",{"aliases":[513],"dataHighlight":[1540,"data-highlight"],"name":[1537],"value":[1537],"divider":[1540]}]]],["smoothly-spinner.cjs",[[2,"smoothly-spinner",{"active":[516],"size":[513]}]]],["smoothly-selector.cjs",[[6,"smoothly-selector",{"opened":[32],"selectedElement":[32],"missing":[32],"filter":[32]},[[0,"click","onClick"],[0,"itemSelected","onItemSelected"],[0,"keydown","onKeyDown"]]]]],["smoothly-item.cjs",[[6,"smoothly-item",{"value":[8],"selected":[1540],"filter":[64]},[[0,"click","onClick"]]]]],["smoothly-calendar.cjs",[[2,"smoothly-calendar",{"month":[1025],"value":[1025],"start":[1025],"end":[1025],"max":[1025],"min":[1025],"doubleInput":[516,"double-input"],"firstSelected":[32]}]]],["smoothly-input.cjs",[[6,"smoothly-input",{"name":[513],"value":[1032],"type":[513],"required":[1540],"minLength":[1026,"min-length"],"showLabel":[516,"show-label"],"maxLength":[1026,"max-length"],"autocomplete":[1028],"pattern":[1040],"placeholder":[1025],"disabled":[1028],"currency":[513],"getFormData":[64],"setKeepFocusOnReRender":[64],"setSelectionRange":[64]}]]],["smoothly-input-month.cjs",[[2,"smoothly-input-month",{"value":[1025]}]]],["smoothly-trigger.cjs",[[6,"smoothly-trigger",{"color":[513],"expand":[513],"fill":[513],"disabled":[516],"type":[513],"name":[1],"value":[8]},[[0,"click","onClick"]]]]]], options);
|
|
127
127
|
});
|
|
@@ -55,7 +55,7 @@ export const App = (attributes, nodes, utils) => {
|
|
|
55
55
|
})
|
|
56
56
|
.map(child => (h("li", null, child))))),
|
|
57
57
|
children.filter(child => { var _a; return ((_a = child.vattrs) === null || _a === void 0 ? void 0 : _a.slot) == "header"; }).map(child => child.node)),
|
|
58
|
-
h("
|
|
58
|
+
h("slot", { name: "content" },
|
|
59
59
|
h(Router.Switch, null, children
|
|
60
60
|
.filter(child => { var _a; return ((_a = child.vattrs) === null || _a === void 0 ? void 0 : _a.path) != undefined; })
|
|
61
61
|
.map(child => {
|
|
@@ -46,6 +46,18 @@ export class SmoothlyDisplayDemo {
|
|
|
46
46
|
h("dt", null, "Quiet"),
|
|
47
47
|
h("dd", null,
|
|
48
48
|
h("smoothly-quiet", { color: "dark" }, "-"))),
|
|
49
|
+
h("smoothly-skeleton", { period: 3, distance: "20rem", width: "20rem" }),
|
|
50
|
+
h("smoothly-skeleton", { period: 3, distance: "20rem", color: "200,200,255" }),
|
|
51
|
+
h("smoothly-skeleton", { period: 3, distance: "20rem", color: "var(--smoothly-warning-color)" }),
|
|
52
|
+
h("smoothly-skeleton", { period: 3, distance: "20rem" }),
|
|
53
|
+
h("smoothly-skeleton", { align: "center", period: 3, distance: "20rem", width: "20rem" }),
|
|
54
|
+
h("smoothly-skeleton", { align: "center", period: 3, distance: "20rem" }),
|
|
55
|
+
h("smoothly-skeleton", { align: "center", period: 3, distance: "20rem" }),
|
|
56
|
+
h("smoothly-skeleton", { align: "center", period: 3, distance: "20rem" }),
|
|
57
|
+
h("smoothly-skeleton", { align: "right", period: 3, distance: "20rem", width: "20rem" }),
|
|
58
|
+
h("smoothly-skeleton", { align: "right", period: 3, distance: "20rem" }),
|
|
59
|
+
h("smoothly-skeleton", { align: "right", period: 3, distance: "20rem" }),
|
|
60
|
+
h("smoothly-skeleton", { align: "right", period: 3, distance: "20rem" }),
|
|
49
61
|
h("smoothly-urlencoded", { data: "hej=hopp&tjena=moss" }),
|
|
50
62
|
h("div", { style: { display: "flex", justifyContent: "space-between" } },
|
|
51
63
|
h("smoothly-popup", { direction: "down" },
|
|
@@ -11,15 +11,19 @@ export class InputDate {
|
|
|
11
11
|
render() {
|
|
12
12
|
var _a;
|
|
13
13
|
return [
|
|
14
|
-
h("smoothly-input", { onClick: () => (this.open = !this.open), type: "date", value: this.value, onSmoothlyChanged: e => (this.value = e.detail.value) },
|
|
14
|
+
h("smoothly-input", { onClick: () => (this.open = !this.open), disabled: this.disabled, type: "date", value: this.value, onSmoothlyChanged: e => (this.value = e.detail.value) },
|
|
15
15
|
h("slot", null)),
|
|
16
|
-
this.open
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
16
|
+
this.open && !this.disabled
|
|
17
|
+
? [
|
|
18
|
+
h("div", { onClick: () => (this.open = false) }),
|
|
19
|
+
h("nav", null,
|
|
20
|
+
h("div", { class: "arrow" }),
|
|
21
|
+
h("smoothly-calendar", { doubleInput: false, value: (_a = this.value) !== null && _a !== void 0 ? _a : Date.now(), onValueChanged: event => {
|
|
22
|
+
this.value = event.detail;
|
|
23
|
+
event.stopPropagation();
|
|
24
|
+
}, max: this.max, min: this.min })),
|
|
25
|
+
]
|
|
26
|
+
: [],
|
|
23
27
|
];
|
|
24
28
|
}
|
|
25
29
|
static get is() { return "smoothly-input-date"; }
|
|
@@ -113,6 +117,23 @@ export class InputDate {
|
|
|
113
117
|
},
|
|
114
118
|
"attribute": "min",
|
|
115
119
|
"reflect": false
|
|
120
|
+
},
|
|
121
|
+
"disabled": {
|
|
122
|
+
"type": "boolean",
|
|
123
|
+
"mutable": true,
|
|
124
|
+
"complexType": {
|
|
125
|
+
"original": "boolean",
|
|
126
|
+
"resolved": "boolean",
|
|
127
|
+
"references": {}
|
|
128
|
+
},
|
|
129
|
+
"required": false,
|
|
130
|
+
"optional": false,
|
|
131
|
+
"docs": {
|
|
132
|
+
"tags": [],
|
|
133
|
+
"text": ""
|
|
134
|
+
},
|
|
135
|
+
"attribute": "disabled",
|
|
136
|
+
"reflect": false
|
|
116
137
|
}
|
|
117
138
|
}; }
|
|
118
139
|
static get events() { return [{
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { Component, h, Host, Prop } from "@stencil/core";
|
|
2
|
+
export class SmoothlySkeleton {
|
|
3
|
+
constructor() {
|
|
4
|
+
this.widths = ["8rem", "9rem", "10rem"];
|
|
5
|
+
this.align = "left";
|
|
6
|
+
}
|
|
7
|
+
componentWillLoad() {
|
|
8
|
+
var _a;
|
|
9
|
+
this.width = (_a = this.width) !== null && _a !== void 0 ? _a : this.widths[Math.floor(Math.random() * this.widths.length)];
|
|
10
|
+
}
|
|
11
|
+
render() {
|
|
12
|
+
var _a;
|
|
13
|
+
const cssVariables = Object.assign(Object.assign({ "--width": this.width, "--distance": (_a = this.distance) !== null && _a !== void 0 ? _a : "10rem" }, (this.color ? { "--color": this.color } : undefined)), (this.period ? { "--period": this.period + "s" } : undefined));
|
|
14
|
+
return h(Host, { style: cssVariables });
|
|
15
|
+
}
|
|
16
|
+
static get is() { return "smoothly-skeleton"; }
|
|
17
|
+
static get encapsulation() { return "scoped"; }
|
|
18
|
+
static get originalStyleUrls() { return {
|
|
19
|
+
"$": ["style.css"]
|
|
20
|
+
}; }
|
|
21
|
+
static get styleUrls() { return {
|
|
22
|
+
"$": ["style.css"]
|
|
23
|
+
}; }
|
|
24
|
+
static get properties() { return {
|
|
25
|
+
"widths": {
|
|
26
|
+
"type": "unknown",
|
|
27
|
+
"mutable": false,
|
|
28
|
+
"complexType": {
|
|
29
|
+
"original": "string[]",
|
|
30
|
+
"resolved": "string[]",
|
|
31
|
+
"references": {}
|
|
32
|
+
},
|
|
33
|
+
"required": false,
|
|
34
|
+
"optional": false,
|
|
35
|
+
"docs": {
|
|
36
|
+
"tags": [],
|
|
37
|
+
"text": ""
|
|
38
|
+
},
|
|
39
|
+
"defaultValue": "[\"8rem\", \"9rem\", \"10rem\"]"
|
|
40
|
+
},
|
|
41
|
+
"width": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"mutable": false,
|
|
44
|
+
"complexType": {
|
|
45
|
+
"original": "string",
|
|
46
|
+
"resolved": "string",
|
|
47
|
+
"references": {}
|
|
48
|
+
},
|
|
49
|
+
"required": false,
|
|
50
|
+
"optional": false,
|
|
51
|
+
"docs": {
|
|
52
|
+
"tags": [],
|
|
53
|
+
"text": ""
|
|
54
|
+
},
|
|
55
|
+
"attribute": "width",
|
|
56
|
+
"reflect": false
|
|
57
|
+
},
|
|
58
|
+
"color": {
|
|
59
|
+
"type": "string",
|
|
60
|
+
"mutable": false,
|
|
61
|
+
"complexType": {
|
|
62
|
+
"original": "string",
|
|
63
|
+
"resolved": "string",
|
|
64
|
+
"references": {}
|
|
65
|
+
},
|
|
66
|
+
"required": false,
|
|
67
|
+
"optional": false,
|
|
68
|
+
"docs": {
|
|
69
|
+
"tags": [],
|
|
70
|
+
"text": ""
|
|
71
|
+
},
|
|
72
|
+
"attribute": "color",
|
|
73
|
+
"reflect": false
|
|
74
|
+
},
|
|
75
|
+
"period": {
|
|
76
|
+
"type": "number",
|
|
77
|
+
"mutable": false,
|
|
78
|
+
"complexType": {
|
|
79
|
+
"original": "number",
|
|
80
|
+
"resolved": "number",
|
|
81
|
+
"references": {}
|
|
82
|
+
},
|
|
83
|
+
"required": false,
|
|
84
|
+
"optional": false,
|
|
85
|
+
"docs": {
|
|
86
|
+
"tags": [],
|
|
87
|
+
"text": ""
|
|
88
|
+
},
|
|
89
|
+
"attribute": "period",
|
|
90
|
+
"reflect": false
|
|
91
|
+
},
|
|
92
|
+
"distance": {
|
|
93
|
+
"type": "string",
|
|
94
|
+
"mutable": false,
|
|
95
|
+
"complexType": {
|
|
96
|
+
"original": "string",
|
|
97
|
+
"resolved": "string",
|
|
98
|
+
"references": {}
|
|
99
|
+
},
|
|
100
|
+
"required": false,
|
|
101
|
+
"optional": false,
|
|
102
|
+
"docs": {
|
|
103
|
+
"tags": [],
|
|
104
|
+
"text": ""
|
|
105
|
+
},
|
|
106
|
+
"attribute": "distance",
|
|
107
|
+
"reflect": false
|
|
108
|
+
},
|
|
109
|
+
"align": {
|
|
110
|
+
"type": "string",
|
|
111
|
+
"mutable": false,
|
|
112
|
+
"complexType": {
|
|
113
|
+
"original": "\"left\" | \"center\" | \"right\"",
|
|
114
|
+
"resolved": "\"center\" | \"left\" | \"right\"",
|
|
115
|
+
"references": {}
|
|
116
|
+
},
|
|
117
|
+
"required": false,
|
|
118
|
+
"optional": false,
|
|
119
|
+
"docs": {
|
|
120
|
+
"tags": [],
|
|
121
|
+
"text": ""
|
|
122
|
+
},
|
|
123
|
+
"attribute": "align",
|
|
124
|
+
"reflect": true,
|
|
125
|
+
"defaultValue": "\"left\""
|
|
126
|
+
}
|
|
127
|
+
}; }
|
|
128
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
:host {
|
|
2
|
+
display: block;
|
|
3
|
+
height: 1rem;
|
|
4
|
+
}
|
|
5
|
+
:host(::before) {
|
|
6
|
+
content: "";
|
|
7
|
+
display: block;
|
|
8
|
+
width: var(--width);
|
|
9
|
+
height: 100%;
|
|
10
|
+
border-radius: 0.4rem;
|
|
11
|
+
background-image: linear-gradient(90deg, rgb(var(--color, var(--smoothly-dark-color))) 0, transparent 2.5rem, rgb(var(--color, var(--smoothly-dark-color))) 5rem);
|
|
12
|
+
background-size: calc(var(--distance) + 5rem);
|
|
13
|
+
animation-duration: var(--period, 1.6s);
|
|
14
|
+
animation-iteration-count: infinite;
|
|
15
|
+
animation-timing-function: linear;
|
|
16
|
+
animation-name: shine-lines-left;
|
|
17
|
+
}
|
|
18
|
+
@keyframes shine-lines-left {
|
|
19
|
+
0% {
|
|
20
|
+
background-position: -5rem;
|
|
21
|
+
}
|
|
22
|
+
40%,
|
|
23
|
+
100% {
|
|
24
|
+
background-position: var(--distance);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
:host([align=center]::before) {
|
|
28
|
+
margin: 0 auto;
|
|
29
|
+
animation-name: shine-lines-center;
|
|
30
|
+
}
|
|
31
|
+
@keyframes shine-lines-center {
|
|
32
|
+
0% {
|
|
33
|
+
background-position: calc((var(--width) - var(--distance)) / 2 - 5rem);
|
|
34
|
+
}
|
|
35
|
+
40%,
|
|
36
|
+
100% {
|
|
37
|
+
background-position: calc(var(--width) + (var(--distance) - var(--width)) / 2);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
:host([align=right]::before) {
|
|
41
|
+
margin: 0;
|
|
42
|
+
margin-left: auto;
|
|
43
|
+
animation-name: shine-lines-right;
|
|
44
|
+
}
|
|
45
|
+
@keyframes shine-lines-right {
|
|
46
|
+
0% {
|
|
47
|
+
background-position: calc(var(--width) - var(--distance) - 5rem);
|
|
48
|
+
}
|
|
49
|
+
40%,
|
|
50
|
+
100% {
|
|
51
|
+
background-position: var(--width);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
@@ -224,6 +224,12 @@ export const SmoothlySelector: {
|
|
|
224
224
|
new (): SmoothlySelector;
|
|
225
225
|
};
|
|
226
226
|
|
|
227
|
+
interface SmoothlySkeleton extends Components.SmoothlySkeleton, HTMLElement {}
|
|
228
|
+
export const SmoothlySkeleton: {
|
|
229
|
+
prototype: SmoothlySkeleton;
|
|
230
|
+
new (): SmoothlySkeleton;
|
|
231
|
+
};
|
|
232
|
+
|
|
227
233
|
interface SmoothlySpinner extends Components.SmoothlySpinner, HTMLElement {}
|
|
228
234
|
export const SmoothlySpinner: {
|
|
229
235
|
prototype: SmoothlySpinner;
|