@maggioli-design-system/mds-table-row 4.4.3 → 4.5.0
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/mds-table-row.cjs.entry.js +1 -1
- package/dist/cjs/mds-table-row.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +2 -2
- package/dist/collection/common/file.js +48 -0
- package/dist/collection/common/icon.js +15 -0
- package/dist/collection/common/unit.js +15 -3
- package/dist/collection/common/yugop/core.js +16 -0
- package/dist/collection/common/yugop/index.js +3 -0
- package/dist/collection/common/yugop/random-text.js +59 -0
- package/dist/collection/common/yugop/utils/math.js +11 -0
- package/dist/collection/common/yugop/utils/noop.js +1 -0
- package/dist/collection/common/yugop/utils/prng.js +21 -0
- package/dist/collection/common/yugop/utils/string.js +2 -0
- package/dist/collection/components/mds-table-row/mds-table-row.css +144 -0
- package/dist/collection/dictionary/file-extensions.js +64 -0
- package/dist/collection/dictionary/icon.js +6 -1
- package/dist/collection/dictionary/text.js +6 -0
- package/dist/collection/dictionary/variant.js +18 -1
- package/dist/collection/fixtures/filenames.js +57 -0
- package/dist/collection/type/file-types.js +1 -0
- package/dist/collection/type/text.js +1 -0
- package/dist/collection/type/variant-file-format.js +111 -0
- package/dist/components/mds-table-row.js +1 -1
- package/dist/documentation.json +3 -3
- package/dist/esm/mds-table-row.entry.js +1 -1
- package/dist/esm/mds-table-row.js +1 -1
- package/dist/esm-es5/mds-table-row.entry.js +1 -1
- package/dist/mds-table-row/mds-table-row.esm.js +1 -1
- package/dist/mds-table-row/mds-table-row.js +1 -1
- package/{www/build/p-fe4b1f1b.system.js → dist/mds-table-row/p-65fbbba9.system.js} +1 -1
- package/dist/mds-table-row/p-ab9fb13e.entry.js +1 -0
- package/dist/mds-table-row/p-f8b0aa6b.system.entry.js +1 -0
- package/dist/stats.json +57 -18
- package/dist/types/common/file.d.ts +12 -0
- package/dist/types/common/icon.d.ts +5 -0
- package/dist/types/common/unit.d.ts +2 -1
- package/dist/types/common/yugop/core.d.ts +10 -0
- package/dist/types/common/yugop/index.d.ts +1 -0
- package/dist/types/common/yugop/random-text.d.ts +31 -0
- package/dist/types/common/yugop/utils/math.d.ts +3 -0
- package/dist/types/common/yugop/utils/noop.d.ts +1 -0
- package/dist/types/common/yugop/utils/prng.d.ts +8 -0
- package/dist/types/common/yugop/utils/string.d.ts +1 -0
- package/dist/types/dictionary/file-extensions.d.ts +11 -0
- package/dist/types/dictionary/icon.d.ts +2 -1
- package/dist/types/dictionary/text.d.ts +2 -0
- package/dist/types/dictionary/variant.d.ts +2 -1
- package/dist/types/fixtures/filenames.d.ts +2 -0
- package/dist/types/type/file-types.d.ts +1 -0
- package/dist/types/type/text.d.ts +1 -0
- package/dist/types/type/variant-file-format.d.ts +11 -0
- package/dist/types/type/variant.d.ts +1 -0
- package/documentation.json +47 -12
- package/package.json +4 -4
- package/src/common/file.ts +63 -0
- package/src/common/icon.ts +25 -0
- package/src/common/unit.ts +21 -2
- package/src/common/yugop/core.ts +47 -0
- package/src/common/yugop/index.ts +4 -0
- package/src/common/yugop/random-text.ts +95 -0
- package/src/common/yugop/utils/math.ts +21 -0
- package/src/common/yugop/utils/noop.ts +1 -0
- package/src/common/yugop/utils/prng.ts +35 -0
- package/src/common/yugop/utils/string.ts +4 -0
- package/src/dictionary/file-extensions.ts +81 -0
- package/src/dictionary/icon.ts +6 -0
- package/src/dictionary/text.ts +9 -0
- package/src/dictionary/variant.ts +19 -0
- package/src/fixtures/filenames.ts +60 -0
- package/src/fixtures/icons.json +10 -0
- package/src/fixtures/iconsauce.json +3 -0
- package/src/type/file-types.ts +55 -0
- package/src/type/text.ts +4 -0
- package/src/type/variant-file-format.ts +128 -0
- package/src/type/variant.ts +17 -0
- package/www/build/mds-table-row.esm.js +1 -1
- package/www/build/mds-table-row.js +1 -1
- package/{dist/mds-table-row/p-fe4b1f1b.system.js → www/build/p-65fbbba9.system.js} +1 -1
- package/www/build/p-ab9fb13e.entry.js +1 -0
- package/www/build/p-f8b0aa6b.system.entry.js +1 -0
- package/dist/mds-table-row/p-0f958c61.entry.js +0 -1
- package/dist/mds-table-row/p-8da35bc4.system.entry.js +0 -1
- package/www/build/p-0f958c61.entry.js +0 -1
- package/www/build/p-8da35bc4.system.entry.js +0 -1
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import baselineFolderZip from "@icon/mi/baseline/folder-zip.svg";
|
|
2
|
+
import baselineAttachFile from "@icon/mi/baseline/attach-file.svg";
|
|
3
|
+
import baselineAudiotrack from "@icon/mi/baseline/audiotrack.svg";
|
|
4
|
+
import baselineTerminal from "@icon/mi/baseline/terminal.svg";
|
|
5
|
+
import baselineInsertDriveFile from "@icon/mi/baseline/insert-drive-file.svg";
|
|
6
|
+
import mdiHardDisk from "@icon/mdi/harddisk.svg";
|
|
7
|
+
const fileFormatsVariant = {
|
|
8
|
+
archive: {
|
|
9
|
+
color: 'fill-label-amaranth-04 text-label-amaranth-04',
|
|
10
|
+
icon: baselineFolderZip,
|
|
11
|
+
iconBackground: 'bg-label-amaranth-10',
|
|
12
|
+
variant: 'amaranth',
|
|
13
|
+
},
|
|
14
|
+
attachment: {
|
|
15
|
+
color: 'fill-tone-neutral-04 text-tone-neutral-04',
|
|
16
|
+
icon: baselineAttachFile,
|
|
17
|
+
iconBackground: 'bg-tone-neutral-10',
|
|
18
|
+
variant: 'dark',
|
|
19
|
+
},
|
|
20
|
+
audio: {
|
|
21
|
+
color: 'fill-label-violet-04 text-label-violet-04',
|
|
22
|
+
icon: baselineAudiotrack,
|
|
23
|
+
iconBackground: 'bg-label-violet-10',
|
|
24
|
+
variant: 'violet',
|
|
25
|
+
},
|
|
26
|
+
code: {
|
|
27
|
+
color: 'fill-label-yellow-04 text-label-yellow-04',
|
|
28
|
+
icon: baselineTerminal,
|
|
29
|
+
iconBackground: 'bg-label-yellow-10',
|
|
30
|
+
variant: 'yellow',
|
|
31
|
+
},
|
|
32
|
+
data: {
|
|
33
|
+
color: 'fill-label-yellow-04 text-label-yellow-04',
|
|
34
|
+
icon: mdiHardDisk,
|
|
35
|
+
iconBackground: 'bg-label-yellow-10',
|
|
36
|
+
variant: 'yellow',
|
|
37
|
+
},
|
|
38
|
+
document: {
|
|
39
|
+
color: 'fill-label-orange-04 text-label-orange-04',
|
|
40
|
+
icon: baselineInsertDriveFile,
|
|
41
|
+
iconBackground: 'bg-label-orange-10',
|
|
42
|
+
variant: 'orange',
|
|
43
|
+
},
|
|
44
|
+
email: {
|
|
45
|
+
color: 'fill-label-blue-04 text-label-blue-04',
|
|
46
|
+
icon: 'mi/baseline/email',
|
|
47
|
+
iconBackground: 'bg-label-blue-10',
|
|
48
|
+
variant: 'blue',
|
|
49
|
+
},
|
|
50
|
+
executable: {
|
|
51
|
+
color: 'fill-label-amaranth-04 text-label-amaranth-04',
|
|
52
|
+
icon: 'mi/baseline/wysiwyg',
|
|
53
|
+
iconBackground: 'bg-label-amaranth-10',
|
|
54
|
+
variant: 'amaranth',
|
|
55
|
+
},
|
|
56
|
+
image: {
|
|
57
|
+
color: 'fill-label-green-04 text-label-green-04',
|
|
58
|
+
icon: 'mi/baseline/panorama',
|
|
59
|
+
iconBackground: 'bg-label-green-10',
|
|
60
|
+
variant: 'green',
|
|
61
|
+
},
|
|
62
|
+
imageRaster: {
|
|
63
|
+
color: 'fill-label-green-04 text-label-green-04',
|
|
64
|
+
icon: 'mi/baseline/panorama',
|
|
65
|
+
iconBackground: 'bg-label-green-10',
|
|
66
|
+
variant: 'green',
|
|
67
|
+
},
|
|
68
|
+
markup: {
|
|
69
|
+
color: 'fill-label-yellow-04 text-label-yellow-04',
|
|
70
|
+
icon: 'mi/baseline/web',
|
|
71
|
+
iconBackground: 'bg-label-yellow-10',
|
|
72
|
+
variant: 'yellow',
|
|
73
|
+
},
|
|
74
|
+
slide: {
|
|
75
|
+
color: 'fill-label-orchid-04 text-label-orchid-04',
|
|
76
|
+
icon: 'mi/baseline/tv',
|
|
77
|
+
iconBackground: 'bg-label-orchid-10',
|
|
78
|
+
variant: 'orchid',
|
|
79
|
+
},
|
|
80
|
+
spreadsheet: {
|
|
81
|
+
color: 'fill-label-lime-04 text-label-lime-04',
|
|
82
|
+
icon: 'mi/baseline/border-all',
|
|
83
|
+
iconBackground: 'bg-label-lime-10',
|
|
84
|
+
variant: 'lime',
|
|
85
|
+
},
|
|
86
|
+
text: {
|
|
87
|
+
color: 'fill-label-blue-04 text-label-blue-04',
|
|
88
|
+
icon: 'mi/baseline/description',
|
|
89
|
+
iconBackground: 'bg-label-blue-10',
|
|
90
|
+
variant: 'blue',
|
|
91
|
+
},
|
|
92
|
+
vectorImage: {
|
|
93
|
+
color: 'fill-label-aqua-04 text-label-aqua-04',
|
|
94
|
+
icon: 'mdi/vector-curve',
|
|
95
|
+
iconBackground: 'bg-label-aqua-10',
|
|
96
|
+
variant: 'aqua',
|
|
97
|
+
},
|
|
98
|
+
vector: {
|
|
99
|
+
color: 'fill-label-aqua-04 text-label-aqua-04',
|
|
100
|
+
icon: 'mdi/vector-curve',
|
|
101
|
+
iconBackground: 'bg-label-aqua-10',
|
|
102
|
+
variant: 'aqua',
|
|
103
|
+
},
|
|
104
|
+
video: {
|
|
105
|
+
color: 'fill-label-violet-04 text-label-violet-04',
|
|
106
|
+
icon: 'mi/baseline/videocam',
|
|
107
|
+
iconBackground: 'bg-label-violet-10',
|
|
108
|
+
variant: 'violet',
|
|
109
|
+
},
|
|
110
|
+
};
|
|
111
|
+
export { fileFormatsVariant, };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { proxyCustomElement, HTMLElement, h, Host } from '@stencil/core/internal/client';
|
|
2
2
|
|
|
3
|
-
const mdsTableRowCss = ".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{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";
|
|
3
|
+
const mdsTableRowCss = ".static{position:static}.fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.bg-label-amaranth-10{--tw-bg-opacity:1;background-color:rgb(var(--label-amaranth-10) / var(--tw-bg-opacity))}.bg-label-aqua-10{--tw-bg-opacity:1;background-color:rgb(var(--label-aqua-10) / var(--tw-bg-opacity))}.bg-label-blue-10{--tw-bg-opacity:1;background-color:rgb(var(--label-blue-10) / var(--tw-bg-opacity))}.bg-label-green-10{--tw-bg-opacity:1;background-color:rgb(var(--label-green-10) / var(--tw-bg-opacity))}.bg-label-lime-10{--tw-bg-opacity:1;background-color:rgb(var(--label-lime-10) / var(--tw-bg-opacity))}.bg-label-orange-10{--tw-bg-opacity:1;background-color:rgb(var(--label-orange-10) / var(--tw-bg-opacity))}.bg-label-orchid-10{--tw-bg-opacity:1;background-color:rgb(var(--label-orchid-10) / var(--tw-bg-opacity))}.bg-label-violet-10{--tw-bg-opacity:1;background-color:rgb(var(--label-violet-10) / var(--tw-bg-opacity))}.bg-label-yellow-10{--tw-bg-opacity:1;background-color:rgb(var(--label-yellow-10) / var(--tw-bg-opacity))}.bg-tone-neutral-10{--tw-bg-opacity:1;background-color:rgb(var(--tone-neutral-10) / var(--tw-bg-opacity))}.fill-label-amaranth-04{fill:rgb(var(--label-amaranth-04))}.fill-label-aqua-04{fill:rgb(var(--label-aqua-04))}.fill-label-blue-04{fill:rgb(var(--label-blue-04))}.fill-label-green-04{fill:rgb(var(--label-green-04))}.fill-label-lime-04{fill:rgb(var(--label-lime-04))}.fill-label-orange-04{fill:rgb(var(--label-orange-04))}.fill-label-orchid-04{fill:rgb(var(--label-orchid-04))}.fill-label-violet-04{fill:rgb(var(--label-violet-04))}.fill-label-yellow-04{fill:rgb(var(--label-yellow-04))}.fill-tone-neutral-04{fill:rgb(var(--tone-neutral-04))}.text-label-amaranth-04{--tw-text-opacity:1;color:rgb(var(--label-amaranth-04) / var(--tw-text-opacity))}.text-label-aqua-04{--tw-text-opacity:1;color:rgb(var(--label-aqua-04) / var(--tw-text-opacity))}.text-label-blue-04{--tw-text-opacity:1;color:rgb(var(--label-blue-04) / var(--tw-text-opacity))}.text-label-green-04{--tw-text-opacity:1;color:rgb(var(--label-green-04) / var(--tw-text-opacity))}.text-label-lime-04{--tw-text-opacity:1;color:rgb(var(--label-lime-04) / var(--tw-text-opacity))}.text-label-orange-04{--tw-text-opacity:1;color:rgb(var(--label-orange-04) / var(--tw-text-opacity))}.text-label-orchid-04{--tw-text-opacity:1;color:rgb(var(--label-orchid-04) / var(--tw-text-opacity))}.text-label-violet-04{--tw-text-opacity:1;color:rgb(var(--label-violet-04) / var(--tw-text-opacity))}.text-label-yellow-04{--tw-text-opacity:1;color:rgb(var(--label-yellow-04) / var(--tw-text-opacity))}.text-tone-neutral-04{--tw-text-opacity:1;color:rgb(var(--tone-neutral-04) / var(--tw-text-opacity))}.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{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";
|
|
4
4
|
|
|
5
5
|
const MdsTableRow$1 = /*@__PURE__*/ proxyCustomElement(class MdsTableRow extends HTMLElement {
|
|
6
6
|
constructor() {
|
package/dist/documentation.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { r as registerInstance, h, H as Host } from './index-9f40909f.js';
|
|
2
2
|
|
|
3
|
-
const mdsTableRowCss = ".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{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";
|
|
3
|
+
const mdsTableRowCss = ".static{position:static}.fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.bg-label-amaranth-10{--tw-bg-opacity:1;background-color:rgb(var(--label-amaranth-10) / var(--tw-bg-opacity))}.bg-label-aqua-10{--tw-bg-opacity:1;background-color:rgb(var(--label-aqua-10) / var(--tw-bg-opacity))}.bg-label-blue-10{--tw-bg-opacity:1;background-color:rgb(var(--label-blue-10) / var(--tw-bg-opacity))}.bg-label-green-10{--tw-bg-opacity:1;background-color:rgb(var(--label-green-10) / var(--tw-bg-opacity))}.bg-label-lime-10{--tw-bg-opacity:1;background-color:rgb(var(--label-lime-10) / var(--tw-bg-opacity))}.bg-label-orange-10{--tw-bg-opacity:1;background-color:rgb(var(--label-orange-10) / var(--tw-bg-opacity))}.bg-label-orchid-10{--tw-bg-opacity:1;background-color:rgb(var(--label-orchid-10) / var(--tw-bg-opacity))}.bg-label-violet-10{--tw-bg-opacity:1;background-color:rgb(var(--label-violet-10) / var(--tw-bg-opacity))}.bg-label-yellow-10{--tw-bg-opacity:1;background-color:rgb(var(--label-yellow-10) / var(--tw-bg-opacity))}.bg-tone-neutral-10{--tw-bg-opacity:1;background-color:rgb(var(--tone-neutral-10) / var(--tw-bg-opacity))}.fill-label-amaranth-04{fill:rgb(var(--label-amaranth-04))}.fill-label-aqua-04{fill:rgb(var(--label-aqua-04))}.fill-label-blue-04{fill:rgb(var(--label-blue-04))}.fill-label-green-04{fill:rgb(var(--label-green-04))}.fill-label-lime-04{fill:rgb(var(--label-lime-04))}.fill-label-orange-04{fill:rgb(var(--label-orange-04))}.fill-label-orchid-04{fill:rgb(var(--label-orchid-04))}.fill-label-violet-04{fill:rgb(var(--label-violet-04))}.fill-label-yellow-04{fill:rgb(var(--label-yellow-04))}.fill-tone-neutral-04{fill:rgb(var(--tone-neutral-04))}.text-label-amaranth-04{--tw-text-opacity:1;color:rgb(var(--label-amaranth-04) / var(--tw-text-opacity))}.text-label-aqua-04{--tw-text-opacity:1;color:rgb(var(--label-aqua-04) / var(--tw-text-opacity))}.text-label-blue-04{--tw-text-opacity:1;color:rgb(var(--label-blue-04) / var(--tw-text-opacity))}.text-label-green-04{--tw-text-opacity:1;color:rgb(var(--label-green-04) / var(--tw-text-opacity))}.text-label-lime-04{--tw-text-opacity:1;color:rgb(var(--label-lime-04) / var(--tw-text-opacity))}.text-label-orange-04{--tw-text-opacity:1;color:rgb(var(--label-orange-04) / var(--tw-text-opacity))}.text-label-orchid-04{--tw-text-opacity:1;color:rgb(var(--label-orchid-04) / var(--tw-text-opacity))}.text-label-violet-04{--tw-text-opacity:1;color:rgb(var(--label-violet-04) / var(--tw-text-opacity))}.text-label-yellow-04{--tw-text-opacity:1;color:rgb(var(--label-yellow-04) / var(--tw-text-opacity))}.text-tone-neutral-04{--tw-text-opacity:1;color:rgb(var(--tone-neutral-04) / var(--tw-text-opacity))}.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{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";
|
|
4
4
|
|
|
5
5
|
const MdsTableRow = class {
|
|
6
6
|
constructor(hostRef) {
|
|
@@ -2,7 +2,7 @@ import { p as promiseResolve, b as bootstrapLazy } from './index-9f40909f.js';
|
|
|
2
2
|
export { s as setNonce } from './index-9f40909f.js';
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
|
-
Stencil Client Patch Browser v4.
|
|
5
|
+
Stencil Client Patch Browser v4.10.0 | MIT Licensed | https://stenciljs.com
|
|
6
6
|
*/
|
|
7
7
|
const patchBrowser = () => {
|
|
8
8
|
const importMeta = import.meta.url;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as registerInstance,h,H as Host}from"./index-9f40909f.js";var mdsTableRowCss=".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{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";var MdsTableRow=function(){function
|
|
1
|
+
import{r as registerInstance,h,H as Host}from"./index-9f40909f.js";var mdsTableRowCss=".static{position:static}.fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.bg-label-amaranth-10{--tw-bg-opacity:1;background-color:rgb(var(--label-amaranth-10) / var(--tw-bg-opacity))}.bg-label-aqua-10{--tw-bg-opacity:1;background-color:rgb(var(--label-aqua-10) / var(--tw-bg-opacity))}.bg-label-blue-10{--tw-bg-opacity:1;background-color:rgb(var(--label-blue-10) / var(--tw-bg-opacity))}.bg-label-green-10{--tw-bg-opacity:1;background-color:rgb(var(--label-green-10) / var(--tw-bg-opacity))}.bg-label-lime-10{--tw-bg-opacity:1;background-color:rgb(var(--label-lime-10) / var(--tw-bg-opacity))}.bg-label-orange-10{--tw-bg-opacity:1;background-color:rgb(var(--label-orange-10) / var(--tw-bg-opacity))}.bg-label-orchid-10{--tw-bg-opacity:1;background-color:rgb(var(--label-orchid-10) / var(--tw-bg-opacity))}.bg-label-violet-10{--tw-bg-opacity:1;background-color:rgb(var(--label-violet-10) / var(--tw-bg-opacity))}.bg-label-yellow-10{--tw-bg-opacity:1;background-color:rgb(var(--label-yellow-10) / var(--tw-bg-opacity))}.bg-tone-neutral-10{--tw-bg-opacity:1;background-color:rgb(var(--tone-neutral-10) / var(--tw-bg-opacity))}.fill-label-amaranth-04{fill:rgb(var(--label-amaranth-04))}.fill-label-aqua-04{fill:rgb(var(--label-aqua-04))}.fill-label-blue-04{fill:rgb(var(--label-blue-04))}.fill-label-green-04{fill:rgb(var(--label-green-04))}.fill-label-lime-04{fill:rgb(var(--label-lime-04))}.fill-label-orange-04{fill:rgb(var(--label-orange-04))}.fill-label-orchid-04{fill:rgb(var(--label-orchid-04))}.fill-label-violet-04{fill:rgb(var(--label-violet-04))}.fill-label-yellow-04{fill:rgb(var(--label-yellow-04))}.fill-tone-neutral-04{fill:rgb(var(--tone-neutral-04))}.text-label-amaranth-04{--tw-text-opacity:1;color:rgb(var(--label-amaranth-04) / var(--tw-text-opacity))}.text-label-aqua-04{--tw-text-opacity:1;color:rgb(var(--label-aqua-04) / var(--tw-text-opacity))}.text-label-blue-04{--tw-text-opacity:1;color:rgb(var(--label-blue-04) / var(--tw-text-opacity))}.text-label-green-04{--tw-text-opacity:1;color:rgb(var(--label-green-04) / var(--tw-text-opacity))}.text-label-lime-04{--tw-text-opacity:1;color:rgb(var(--label-lime-04) / var(--tw-text-opacity))}.text-label-orange-04{--tw-text-opacity:1;color:rgb(var(--label-orange-04) / var(--tw-text-opacity))}.text-label-orchid-04{--tw-text-opacity:1;color:rgb(var(--label-orchid-04) / var(--tw-text-opacity))}.text-label-violet-04{--tw-text-opacity:1;color:rgb(var(--label-violet-04) / var(--tw-text-opacity))}.text-label-yellow-04{--tw-text-opacity:1;color:rgb(var(--label-yellow-04) / var(--tw-text-opacity))}.text-tone-neutral-04{--tw-text-opacity:1;color:rgb(var(--tone-neutral-04) / var(--tw-text-opacity))}.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{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";var MdsTableRow=function(){function a(a){registerInstance(this,a);this.interactive=undefined}a.prototype.tableInteractiveHandler=function(a){this.interactive=a.detail};a.prototype.render=function(){return h(Host,{role:"row"},h("slot",null))};return a}();MdsTableRow.style=mdsTableRowCss;export{MdsTableRow as mds_table_row};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{p as e,b as
|
|
1
|
+
import{p as e,b as a}from"./p-4e5a0559.js";export{s as setNonce}from"./p-4e5a0559.js";(()=>{const a=import.meta.url,t={};return""!==a&&(t.resourcesUrl=new URL(".",a).href),e(t)})().then((e=>a([["p-ab9fb13e",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],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-65fbbba9.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
|
-
System.register(["./p-24e0f761.system.js"],(function(e,t){"use strict";var n,r;return{setters:[function(t){n=t.p;r=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var r={};if(e!==""){r.resourcesUrl=new URL(".",e).href}return n(r)};e().then((function(e){return r([["p-
|
|
1
|
+
System.register(["./p-24e0f761.system.js"],(function(e,t){"use strict";var n,r;return{setters:[function(t){n=t.p;r=t.b;e("setNonce",t.s)}],execute:function(){var e=function(){var e=t.meta.url;var r={};if(e!==""){r.resourcesUrl=new URL(".",e).href}return n(r)};e().then((function(e){return r([["p-f8b0aa6b.system",[[1,"mds-table-row",{interactive:[1540]},[[4,"mdsTableInteractiveChange","tableInteractiveHandler"]]]]]],e)}))}}}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{r as a,h as l,H as t}from"./p-4e5a0559.js";const r=class{constructor(l){a(this,l),this.interactive=void 0}tableInteractiveHandler(a){this.interactive=a.detail}render(){return l(t,{role:"row"},l("slot",null))}};r.style=".static{position:static}.fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.bg-label-amaranth-10{--tw-bg-opacity:1;background-color:rgb(var(--label-amaranth-10) / var(--tw-bg-opacity))}.bg-label-aqua-10{--tw-bg-opacity:1;background-color:rgb(var(--label-aqua-10) / var(--tw-bg-opacity))}.bg-label-blue-10{--tw-bg-opacity:1;background-color:rgb(var(--label-blue-10) / var(--tw-bg-opacity))}.bg-label-green-10{--tw-bg-opacity:1;background-color:rgb(var(--label-green-10) / var(--tw-bg-opacity))}.bg-label-lime-10{--tw-bg-opacity:1;background-color:rgb(var(--label-lime-10) / var(--tw-bg-opacity))}.bg-label-orange-10{--tw-bg-opacity:1;background-color:rgb(var(--label-orange-10) / var(--tw-bg-opacity))}.bg-label-orchid-10{--tw-bg-opacity:1;background-color:rgb(var(--label-orchid-10) / var(--tw-bg-opacity))}.bg-label-violet-10{--tw-bg-opacity:1;background-color:rgb(var(--label-violet-10) / var(--tw-bg-opacity))}.bg-label-yellow-10{--tw-bg-opacity:1;background-color:rgb(var(--label-yellow-10) / var(--tw-bg-opacity))}.bg-tone-neutral-10{--tw-bg-opacity:1;background-color:rgb(var(--tone-neutral-10) / var(--tw-bg-opacity))}.fill-label-amaranth-04{fill:rgb(var(--label-amaranth-04))}.fill-label-aqua-04{fill:rgb(var(--label-aqua-04))}.fill-label-blue-04{fill:rgb(var(--label-blue-04))}.fill-label-green-04{fill:rgb(var(--label-green-04))}.fill-label-lime-04{fill:rgb(var(--label-lime-04))}.fill-label-orange-04{fill:rgb(var(--label-orange-04))}.fill-label-orchid-04{fill:rgb(var(--label-orchid-04))}.fill-label-violet-04{fill:rgb(var(--label-violet-04))}.fill-label-yellow-04{fill:rgb(var(--label-yellow-04))}.fill-tone-neutral-04{fill:rgb(var(--tone-neutral-04))}.text-label-amaranth-04{--tw-text-opacity:1;color:rgb(var(--label-amaranth-04) / var(--tw-text-opacity))}.text-label-aqua-04{--tw-text-opacity:1;color:rgb(var(--label-aqua-04) / var(--tw-text-opacity))}.text-label-blue-04{--tw-text-opacity:1;color:rgb(var(--label-blue-04) / var(--tw-text-opacity))}.text-label-green-04{--tw-text-opacity:1;color:rgb(var(--label-green-04) / var(--tw-text-opacity))}.text-label-lime-04{--tw-text-opacity:1;color:rgb(var(--label-lime-04) / var(--tw-text-opacity))}.text-label-orange-04{--tw-text-opacity:1;color:rgb(var(--label-orange-04) / var(--tw-text-opacity))}.text-label-orchid-04{--tw-text-opacity:1;color:rgb(var(--label-orchid-04) / var(--tw-text-opacity))}.text-label-violet-04{--tw-text-opacity:1;color:rgb(var(--label-violet-04) / var(--tw-text-opacity))}.text-label-yellow-04{--tw-text-opacity:1;color:rgb(var(--label-yellow-04) / var(--tw-text-opacity))}.text-tone-neutral-04{--tw-text-opacity:1;color:rgb(var(--tone-neutral-04) / var(--tw-text-opacity))}.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{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";export{r as mds_table_row}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
System.register(["./p-24e0f761.system.js"],(function(a){"use strict";var l,t,r;return{setters:[function(a){l=a.r;t=a.h;r=a.H}],execute:function(){var e=".static{position:static}.fixed{position:fixed}.absolute{position:absolute}.border{border-width:1px}.bg-label-amaranth-10{--tw-bg-opacity:1;background-color:rgb(var(--label-amaranth-10) / var(--tw-bg-opacity))}.bg-label-aqua-10{--tw-bg-opacity:1;background-color:rgb(var(--label-aqua-10) / var(--tw-bg-opacity))}.bg-label-blue-10{--tw-bg-opacity:1;background-color:rgb(var(--label-blue-10) / var(--tw-bg-opacity))}.bg-label-green-10{--tw-bg-opacity:1;background-color:rgb(var(--label-green-10) / var(--tw-bg-opacity))}.bg-label-lime-10{--tw-bg-opacity:1;background-color:rgb(var(--label-lime-10) / var(--tw-bg-opacity))}.bg-label-orange-10{--tw-bg-opacity:1;background-color:rgb(var(--label-orange-10) / var(--tw-bg-opacity))}.bg-label-orchid-10{--tw-bg-opacity:1;background-color:rgb(var(--label-orchid-10) / var(--tw-bg-opacity))}.bg-label-violet-10{--tw-bg-opacity:1;background-color:rgb(var(--label-violet-10) / var(--tw-bg-opacity))}.bg-label-yellow-10{--tw-bg-opacity:1;background-color:rgb(var(--label-yellow-10) / var(--tw-bg-opacity))}.bg-tone-neutral-10{--tw-bg-opacity:1;background-color:rgb(var(--tone-neutral-10) / var(--tw-bg-opacity))}.fill-label-amaranth-04{fill:rgb(var(--label-amaranth-04))}.fill-label-aqua-04{fill:rgb(var(--label-aqua-04))}.fill-label-blue-04{fill:rgb(var(--label-blue-04))}.fill-label-green-04{fill:rgb(var(--label-green-04))}.fill-label-lime-04{fill:rgb(var(--label-lime-04))}.fill-label-orange-04{fill:rgb(var(--label-orange-04))}.fill-label-orchid-04{fill:rgb(var(--label-orchid-04))}.fill-label-violet-04{fill:rgb(var(--label-violet-04))}.fill-label-yellow-04{fill:rgb(var(--label-yellow-04))}.fill-tone-neutral-04{fill:rgb(var(--tone-neutral-04))}.text-label-amaranth-04{--tw-text-opacity:1;color:rgb(var(--label-amaranth-04) / var(--tw-text-opacity))}.text-label-aqua-04{--tw-text-opacity:1;color:rgb(var(--label-aqua-04) / var(--tw-text-opacity))}.text-label-blue-04{--tw-text-opacity:1;color:rgb(var(--label-blue-04) / var(--tw-text-opacity))}.text-label-green-04{--tw-text-opacity:1;color:rgb(var(--label-green-04) / var(--tw-text-opacity))}.text-label-lime-04{--tw-text-opacity:1;color:rgb(var(--label-lime-04) / var(--tw-text-opacity))}.text-label-orange-04{--tw-text-opacity:1;color:rgb(var(--label-orange-04) / var(--tw-text-opacity))}.text-label-orchid-04{--tw-text-opacity:1;color:rgb(var(--label-orchid-04) / var(--tw-text-opacity))}.text-label-violet-04{--tw-text-opacity:1;color:rgb(var(--label-violet-04) / var(--tw-text-opacity))}.text-label-yellow-04{--tw-text-opacity:1;color:rgb(var(--label-yellow-04) / var(--tw-text-opacity))}.text-tone-neutral-04{--tw-text-opacity:1;color:rgb(var(--tone-neutral-04) / var(--tw-text-opacity))}.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{display:table-row}:host([interactive]:hover){--mds-table-cell-background:var(--mds-table-cell-background-hover, rgb(var(--tone-neutral)))}";var o=a("mds_table_row",function(){function a(a){l(this,a);this.interactive=undefined}a.prototype.tableInteractiveHandler=function(a){this.interactive=a.detail};a.prototype.render=function(){return t(r,{role:"row"},t("slot",null))};return a}());o.style=e}}}));
|
package/dist/stats.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2024-
|
|
2
|
+
"timestamp": "2024-02-09T14:57:10",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "node",
|
|
5
5
|
"version": "20.10.0"
|
|
@@ -9,34 +9,49 @@
|
|
|
9
9
|
"fsNamespace": "mds-table-row",
|
|
10
10
|
"components": 1,
|
|
11
11
|
"entries": 1,
|
|
12
|
-
"bundles":
|
|
12
|
+
"bundles": 79,
|
|
13
13
|
"outputs": [
|
|
14
14
|
{
|
|
15
15
|
"name": "dist-collection",
|
|
16
|
-
"files":
|
|
16
|
+
"files": 38,
|
|
17
17
|
"generatedFiles": [
|
|
18
18
|
"./dist/collection/common/aria.js",
|
|
19
|
+
"./dist/collection/common/file.js",
|
|
20
|
+
"./dist/collection/common/icon.js",
|
|
19
21
|
"./dist/collection/common/keyboard-manager.js",
|
|
20
22
|
"./dist/collection/common/unit.js",
|
|
23
|
+
"./dist/collection/common/yugop/core.js",
|
|
24
|
+
"./dist/collection/common/yugop/index.js",
|
|
25
|
+
"./dist/collection/common/yugop/random-text.js",
|
|
26
|
+
"./dist/collection/common/yugop/utils/math.js",
|
|
27
|
+
"./dist/collection/common/yugop/utils/noop.js",
|
|
28
|
+
"./dist/collection/common/yugop/utils/prng.js",
|
|
29
|
+
"./dist/collection/common/yugop/utils/string.js",
|
|
21
30
|
"./dist/collection/components/mds-table-row/mds-table-row.js",
|
|
22
31
|
"./dist/collection/dictionary/autocomplete.js",
|
|
23
32
|
"./dist/collection/dictionary/button.js",
|
|
24
33
|
"./dist/collection/dictionary/color.js",
|
|
34
|
+
"./dist/collection/dictionary/file-extensions.js",
|
|
25
35
|
"./dist/collection/dictionary/floating-ui.js",
|
|
26
36
|
"./dist/collection/dictionary/icon.js",
|
|
27
37
|
"./dist/collection/dictionary/input.js",
|
|
28
38
|
"./dist/collection/dictionary/loading.js",
|
|
39
|
+
"./dist/collection/dictionary/text.js",
|
|
29
40
|
"./dist/collection/dictionary/typography.js",
|
|
30
41
|
"./dist/collection/dictionary/variant.js",
|
|
31
42
|
"./dist/collection/fixtures/cities.js",
|
|
43
|
+
"./dist/collection/fixtures/filenames.js",
|
|
32
44
|
"./dist/collection/interface/input-value.js",
|
|
33
45
|
"./dist/collection/type/autocomplete.js",
|
|
34
46
|
"./dist/collection/type/button.js",
|
|
47
|
+
"./dist/collection/type/file-types.js",
|
|
35
48
|
"./dist/collection/type/floating-ui.js",
|
|
36
49
|
"./dist/collection/type/form-rel.js",
|
|
37
50
|
"./dist/collection/type/input.js",
|
|
38
51
|
"./dist/collection/type/loading.js",
|
|
52
|
+
"./dist/collection/type/text.js",
|
|
39
53
|
"./dist/collection/type/typography.js",
|
|
54
|
+
"./dist/collection/type/variant-file-format.js",
|
|
40
55
|
"./dist/collection/type/variant.js"
|
|
41
56
|
]
|
|
42
57
|
},
|
|
@@ -74,21 +89,21 @@
|
|
|
74
89
|
"./dist/mds-table-row/index.esm.js",
|
|
75
90
|
"./dist/mds-table-row/mds-table-row.esm.js",
|
|
76
91
|
"./dist/mds-table-row/mds-table-row.js",
|
|
77
|
-
"./dist/mds-table-row/p-0f958c61.entry.js",
|
|
78
92
|
"./dist/mds-table-row/p-24e0f761.system.js",
|
|
79
93
|
"./dist/mds-table-row/p-4e5a0559.js",
|
|
80
94
|
"./dist/mds-table-row/p-50ea2036.system.js",
|
|
81
|
-
"./dist/mds-table-row/p-
|
|
82
|
-
"./dist/mds-table-row/p-
|
|
95
|
+
"./dist/mds-table-row/p-65fbbba9.system.js",
|
|
96
|
+
"./dist/mds-table-row/p-ab9fb13e.entry.js",
|
|
97
|
+
"./dist/mds-table-row/p-f8b0aa6b.system.entry.js",
|
|
83
98
|
"./www/build/index.esm.js",
|
|
84
99
|
"./www/build/mds-table-row.esm.js",
|
|
85
100
|
"./www/build/mds-table-row.js",
|
|
86
|
-
"./www/build/p-0f958c61.entry.js",
|
|
87
101
|
"./www/build/p-24e0f761.system.js",
|
|
88
102
|
"./www/build/p-4e5a0559.js",
|
|
89
103
|
"./www/build/p-50ea2036.system.js",
|
|
90
|
-
"./www/build/p-
|
|
91
|
-
"./www/build/p-
|
|
104
|
+
"./www/build/p-65fbbba9.system.js",
|
|
105
|
+
"./www/build/p-ab9fb13e.entry.js",
|
|
106
|
+
"./www/build/p-f8b0aa6b.system.entry.js"
|
|
92
107
|
]
|
|
93
108
|
},
|
|
94
109
|
{
|
|
@@ -121,12 +136,12 @@
|
|
|
121
136
|
"components": [
|
|
122
137
|
"mds-table-row"
|
|
123
138
|
],
|
|
124
|
-
"bundleId": "p-
|
|
125
|
-
"fileName": "p-
|
|
139
|
+
"bundleId": "p-ab9fb13e",
|
|
140
|
+
"fileName": "p-ab9fb13e.entry.js",
|
|
126
141
|
"imports": [
|
|
127
142
|
"p-4e5a0559.js"
|
|
128
143
|
],
|
|
129
|
-
"originalByteSize":
|
|
144
|
+
"originalByteSize": 3709
|
|
130
145
|
}
|
|
131
146
|
],
|
|
132
147
|
"esm": [
|
|
@@ -140,7 +155,7 @@
|
|
|
140
155
|
"imports": [
|
|
141
156
|
"index-9f40909f.js"
|
|
142
157
|
],
|
|
143
|
-
"originalByteSize":
|
|
158
|
+
"originalByteSize": 3713
|
|
144
159
|
}
|
|
145
160
|
],
|
|
146
161
|
"es5": [
|
|
@@ -154,7 +169,7 @@
|
|
|
154
169
|
"imports": [
|
|
155
170
|
"index-9f40909f.js"
|
|
156
171
|
],
|
|
157
|
-
"originalByteSize":
|
|
172
|
+
"originalByteSize": 3713
|
|
158
173
|
}
|
|
159
174
|
],
|
|
160
175
|
"system": [
|
|
@@ -163,12 +178,12 @@
|
|
|
163
178
|
"components": [
|
|
164
179
|
"mds-table-row"
|
|
165
180
|
],
|
|
166
|
-
"bundleId": "p-
|
|
167
|
-
"fileName": "p-
|
|
181
|
+
"bundleId": "p-f8b0aa6b.system",
|
|
182
|
+
"fileName": "p-f8b0aa6b.system.entry.js",
|
|
168
183
|
"imports": [
|
|
169
184
|
"p-24e0f761.system.js"
|
|
170
185
|
],
|
|
171
|
-
"originalByteSize":
|
|
186
|
+
"originalByteSize": 3994
|
|
172
187
|
}
|
|
173
188
|
],
|
|
174
189
|
"commonjs": [
|
|
@@ -182,7 +197,7 @@
|
|
|
182
197
|
"imports": [
|
|
183
198
|
"index-7b6fb148.js"
|
|
184
199
|
],
|
|
185
|
-
"originalByteSize":
|
|
200
|
+
"originalByteSize": 3783
|
|
186
201
|
}
|
|
187
202
|
]
|
|
188
203
|
},
|
|
@@ -396,12 +411,31 @@
|
|
|
396
411
|
},
|
|
397
412
|
"sourceGraph": {
|
|
398
413
|
"./src/common/aria.ts": [],
|
|
414
|
+
"./src/common/file.ts": [],
|
|
415
|
+
"./src/common/icon.ts": [],
|
|
399
416
|
"./src/common/keyboard-manager.ts": [],
|
|
400
417
|
"./src/common/unit.ts": [],
|
|
418
|
+
"./src/common/yugop/core.ts": [
|
|
419
|
+
"./src/common/yugop/utils/math",
|
|
420
|
+
"./src/common/yugop/utils/prng",
|
|
421
|
+
"./src/common/yugop/utils/string"
|
|
422
|
+
],
|
|
423
|
+
"./src/common/yugop/index.ts": [],
|
|
424
|
+
"./src/common/yugop/random-text.ts": [
|
|
425
|
+
"./src/common/yugop/core",
|
|
426
|
+
"./src/common/yugop/utils/noop"
|
|
427
|
+
],
|
|
428
|
+
"./src/common/yugop/utils/math.ts": [
|
|
429
|
+
"./src/common/yugop/utils/prng"
|
|
430
|
+
],
|
|
431
|
+
"./src/common/yugop/utils/noop.ts": [],
|
|
432
|
+
"./src/common/yugop/utils/prng.ts": [],
|
|
433
|
+
"./src/common/yugop/utils/string.ts": [],
|
|
401
434
|
"./src/components/mds-table-row/mds-table-row.tsx": [],
|
|
402
435
|
"./src/dictionary/autocomplete.ts": [],
|
|
403
436
|
"./src/dictionary/button.ts": [],
|
|
404
437
|
"./src/dictionary/color.ts": [],
|
|
438
|
+
"./src/dictionary/file-extensions.ts": [],
|
|
405
439
|
"./src/dictionary/floating-ui.ts": [],
|
|
406
440
|
"./src/dictionary/icon.ts": [
|
|
407
441
|
"./src/fixtures/icons.json",
|
|
@@ -409,17 +443,22 @@
|
|
|
409
443
|
],
|
|
410
444
|
"./src/dictionary/input.ts": [],
|
|
411
445
|
"./src/dictionary/loading.ts": [],
|
|
446
|
+
"./src/dictionary/text.ts": [],
|
|
412
447
|
"./src/dictionary/typography.ts": [],
|
|
413
448
|
"./src/dictionary/variant.ts": [],
|
|
414
449
|
"./src/fixtures/cities.ts": [],
|
|
450
|
+
"./src/fixtures/filenames.ts": [],
|
|
415
451
|
"./src/interface/input-value.ts": [],
|
|
416
452
|
"./src/type/autocomplete.ts": [],
|
|
417
453
|
"./src/type/button.ts": [],
|
|
454
|
+
"./src/type/file-types.ts": [],
|
|
418
455
|
"./src/type/floating-ui.ts": [],
|
|
419
456
|
"./src/type/form-rel.ts": [],
|
|
420
457
|
"./src/type/input.ts": [],
|
|
421
458
|
"./src/type/loading.ts": [],
|
|
459
|
+
"./src/type/text.ts": [],
|
|
422
460
|
"./src/type/typography.ts": [],
|
|
461
|
+
"./src/type/variant-file-format.ts": [],
|
|
423
462
|
"./src/type/variant.ts": []
|
|
424
463
|
},
|
|
425
464
|
"rollupResults": {
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ExtensionInfo } from '@dictionary/file-extensions';
|
|
2
|
+
interface FileFormatsVariants {
|
|
3
|
+
color: string;
|
|
4
|
+
icon: string;
|
|
5
|
+
iconBackground: string;
|
|
6
|
+
variant: string;
|
|
7
|
+
}
|
|
8
|
+
declare const getName: (rawFilename: string) => string;
|
|
9
|
+
declare const getSuffix: (rawFilename: string, suffixOverride?: string) => string;
|
|
10
|
+
declare const getExtensionInfos: (rawFilename: string, suffixOverride?: string) => ExtensionInfo;
|
|
11
|
+
declare const getFormatsVariant: (rawFilename: string, suffixOverride?: string) => FileFormatsVariants;
|
|
12
|
+
export { getExtensionInfos, getFormatsVariant, getSuffix, getName, };
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const BASE64_SVG_ICON = "data:image/svg+xml;base64,";
|
|
2
|
+
declare const MARKUP_SVG_ICON = "<svg ";
|
|
3
|
+
declare const isIconFormatIsBase64: (icon?: string) => boolean;
|
|
4
|
+
declare const isIconFormatIsSVG: (icon?: string) => boolean;
|
|
5
|
+
export { isIconFormatIsBase64, isIconFormatIsSVG, BASE64_SVG_ICON, MARKUP_SVG_ICON, };
|
|
@@ -1,2 +1,3 @@
|
|
|
1
1
|
declare const cssDurationToMilliseconds: (duration: string, defaultValue?: number) => number;
|
|
2
|
-
|
|
2
|
+
declare const cssSizeToNumber: (size: string, defaultValue?: number) => number;
|
|
3
|
+
export { cssDurationToMilliseconds, cssSizeToNumber, };
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare const generateRandomCharCodeArray: (arg0: number, arg1: number) => (arg0: string) => number[];
|
|
2
|
+
type Options = {
|
|
3
|
+
str: string;
|
|
4
|
+
minCharCode: number;
|
|
5
|
+
maxCharCode: number;
|
|
6
|
+
placeholderChar: string;
|
|
7
|
+
charStep: number;
|
|
8
|
+
};
|
|
9
|
+
export declare const charCodeArrayToString: (arg0: Options) => (arg0: number[]) => string;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './random-text';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
type Options = {
|
|
2
|
+
str: string;
|
|
3
|
+
speed?: number;
|
|
4
|
+
placeholderChar?: string;
|
|
5
|
+
frameOffset?: number;
|
|
6
|
+
charOffset?: number;
|
|
7
|
+
charStep?: number;
|
|
8
|
+
minCharCode?: number;
|
|
9
|
+
maxCharCode?: number;
|
|
10
|
+
onProgress?: (arg0: string) => void;
|
|
11
|
+
onComplete?: (arg0: string) => void;
|
|
12
|
+
};
|
|
13
|
+
declare class RandomText {
|
|
14
|
+
static defaults: Options;
|
|
15
|
+
str: string;
|
|
16
|
+
speed: number;
|
|
17
|
+
placeholderChar: string;
|
|
18
|
+
frameOffset: number;
|
|
19
|
+
charOffset: number;
|
|
20
|
+
charStep: number;
|
|
21
|
+
minCharCode: number;
|
|
22
|
+
maxCharCode: number;
|
|
23
|
+
onProgress: (...args: Array<string>) => string;
|
|
24
|
+
onComplete: (...args: Array<string>) => string;
|
|
25
|
+
rafId: number;
|
|
26
|
+
constructor(options: Options);
|
|
27
|
+
start: () => void;
|
|
28
|
+
stop(): void;
|
|
29
|
+
step(randoms: number[], stepCount: number, speed: number): void;
|
|
30
|
+
}
|
|
31
|
+
export default RandomText;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const noop: (...rest: unknown[]) => unknown;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const strToCharCodeArray: (arg0: string) => number[];
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface FileExtenstion {
|
|
2
|
+
[key: string]: ExtensionInfo;
|
|
3
|
+
}
|
|
4
|
+
interface ExtensionInfo {
|
|
5
|
+
preview?: boolean;
|
|
6
|
+
format: string;
|
|
7
|
+
description: string;
|
|
8
|
+
}
|
|
9
|
+
declare const fileExtensionsDictionary: FileExtenstion;
|
|
10
|
+
declare const genericMimeToExt: Map<string, string[]>;
|
|
11
|
+
export { FileExtenstion, ExtensionInfo, fileExtensionsDictionary, genericMimeToExt, };
|
|
@@ -2,9 +2,10 @@ declare const themeVariantDictionary: string[];
|
|
|
2
2
|
declare const themeLuminanceVariantDictionary: string[];
|
|
3
3
|
declare const themeStatusVariantDictionary: string[];
|
|
4
4
|
declare const themeFullVariantDictionary: string[];
|
|
5
|
+
declare const themeFullVariantAvatarDictionary: string[];
|
|
5
6
|
declare const themeLabelVariantDictionary: string[];
|
|
6
7
|
declare const toneVariantDictionary: string[];
|
|
7
8
|
declare const toneActionVariantDictionary: string[];
|
|
8
9
|
declare const toneSimpleVariantDictionary: string[];
|
|
9
10
|
declare const toneMinimalVariantDictionary: string[];
|
|
10
|
-
export { themeFullVariantDictionary, themeLabelVariantDictionary, themeLuminanceVariantDictionary, themeStatusVariantDictionary, themeVariantDictionary, toneActionVariantDictionary, toneMinimalVariantDictionary, toneSimpleVariantDictionary, toneVariantDictionary, };
|
|
11
|
+
export { themeFullVariantAvatarDictionary, themeFullVariantDictionary, themeLabelVariantDictionary, themeLuminanceVariantDictionary, themeStatusVariantDictionary, themeVariantDictionary, toneActionVariantDictionary, toneMinimalVariantDictionary, toneSimpleVariantDictionary, toneVariantDictionary, };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type ExtensionSuffixType = '7z' | 'ace' | 'ai' | 'db' | 'default' | 'dmg' | 'doc' | 'docm' | 'docx' | 'eml' | 'eps' | 'exe' | 'flac' | 'gif' | 'heic' | 'htm' | 'html' | 'jpe' | 'jpeg' | 'jpg' | 'js' | 'json' | 'jsx' | 'm2v' | 'mp2' | 'mp3' | 'mp4' | 'mp4v' | 'mpeg' | 'mpg' | 'mpg4' | 'mpga' | 'odp' | 'ods' | 'odt' | 'pdf' | 'php' | 'png' | 'ppt' | 'rar' | 'rtf' | 'sass' | 'shtml' | 'svg' | 'tar' | 'tiff' | 'ts' | 'txt' | 'wav' | 'webp' | 'xar' | 'xls' | 'xlsx' | 'zip';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type TypographyTruncateType = 'all' | 'none' | 'word';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface FileFormatVariant {
|
|
2
|
+
color: string;
|
|
3
|
+
icon: string;
|
|
4
|
+
iconBackground: string;
|
|
5
|
+
variant: string;
|
|
6
|
+
}
|
|
7
|
+
interface FileFormatVariants {
|
|
8
|
+
[key: string]: FileFormatVariant;
|
|
9
|
+
}
|
|
10
|
+
declare const fileFormatsVariant: FileFormatVariants;
|
|
11
|
+
export { fileFormatsVariant, FileFormatVariant, FileFormatVariants, };
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export type ThemeStatusVariantType = 'error' | 'info' | 'success' | 'warning';
|
|
2
2
|
export type ThemeVariantType = 'dark' | 'error' | 'info' | 'light' | 'primary' | 'success' | 'warning';
|
|
3
3
|
export type ThemeFullVariantType = 'amaranth' | 'aqua' | 'blue' | 'dark' | 'error' | 'green' | 'info' | 'light' | 'lime' | 'orange' | 'orchid' | 'sky' | 'success' | 'violet' | 'warning' | 'yellow';
|
|
4
|
+
export type ThemeFullVariantAvatarType = 'amaranth' | 'aqua' | 'blue' | 'error' | 'green' | 'info' | 'lime' | 'orange' | 'orchid' | 'primary' | 'sky' | 'success' | 'violet' | 'warning' | 'yellow';
|
|
4
5
|
export type ThemeLuminanceVariantType = 'dark' | 'light';
|
|
5
6
|
export type LabelVariantType = 'amaranth' | 'aqua' | 'blue' | 'green' | 'lime' | 'orange' | 'orchid' | 'sky' | 'violet' | 'yellow';
|
|
6
7
|
export type ActionVariantType = 'primary' | 'dark' | 'light';
|