@maggioli-design-system/mds-table-row 4.2.2 → 4.4.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.js +1 -1
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/dictionary/input.js +21 -0
- package/dist/collection/dictionary/typography.js +5 -1
- package/dist/documentation.json +2 -2
- package/dist/esm/mds-table-row.js +1 -1
- package/dist/mds-table-row/mds-table-row.js +1 -1
- package/dist/stats.json +9 -11
- package/dist/types/dictionary/input.d.ts +4 -0
- package/dist/types/dictionary/typography.d.ts +2 -1
- package/dist/types/interface/input-value.d.ts +1 -1
- package/dist/types/stencil-public-runtime.d.ts +2 -0
- package/dist/types/type/input.d.ts +4 -0
- package/dist/types/type/typography.d.ts +1 -0
- package/documentation.json +26 -11
- package/package.json +4 -4
- package/src/dictionary/input.ts +30 -0
- package/src/dictionary/typography.ts +7 -1
- package/src/fixtures/icons.json +18 -0
- package/src/fixtures/iconsauce.json +16 -0
- package/src/interface/input-value.ts +1 -1
- package/src/type/input.ts +25 -0
- package/src/type/typography.ts +4 -0
- package/www/build/mds-table-row.js +1 -1
- package/dist/collection/dictionary/input-text-type.js +0 -13
- package/dist/collection/type/input-value-type.js +0 -1
- package/dist/types/dictionary/input-text-type.d.ts +0 -2
- package/dist/types/type/input-text-type.d.ts +0 -1
- package/dist/types/type/input-value-type.d.ts +0 -1
- package/src/dictionary/input-text-type.ts +0 -17
- package/src/type/input-text-type.ts +0 -11
- package/src/type/input-value-type.ts +0 -5
- /package/dist/collection/type/{input-text-type.js → input.js} +0 -0
- /package/dist/mds-table-row/{p-ce48ed66.system.js → p-2ba74223.system.js} +0 -0
- /package/www/build/{p-ce48ed66.system.js → p-2ba74223.system.js} +0 -0
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
const index = require('./index-2800b46e.js');
|
|
6
6
|
|
|
7
7
|
/*
|
|
8
|
-
Stencil Client Patch Browser v4.
|
|
8
|
+
Stencil Client Patch Browser v4.7.1 | 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-table-row.cjs.js', document.baseURI).href));
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
const inputTextTypeDictionary = [
|
|
2
|
+
'date',
|
|
3
|
+
'email',
|
|
4
|
+
'number',
|
|
5
|
+
'password',
|
|
6
|
+
'search',
|
|
7
|
+
'tel',
|
|
8
|
+
'text',
|
|
9
|
+
'textarea',
|
|
10
|
+
'time',
|
|
11
|
+
'url',
|
|
12
|
+
];
|
|
13
|
+
const inputControlsLayoutDictionary = [
|
|
14
|
+
'horizontal',
|
|
15
|
+
'vertical',
|
|
16
|
+
];
|
|
17
|
+
const inputControlsIconDictionary = [
|
|
18
|
+
'arrow',
|
|
19
|
+
'arithmetic',
|
|
20
|
+
];
|
|
21
|
+
export { inputControlsIconDictionary, inputControlsLayoutDictionary, inputTextTypeDictionary, };
|
|
@@ -60,4 +60,8 @@ const typographyTooltipDictionary = [
|
|
|
60
60
|
'detail',
|
|
61
61
|
'tip',
|
|
62
62
|
];
|
|
63
|
-
|
|
63
|
+
const typographyInputDictionary = [
|
|
64
|
+
'snippet',
|
|
65
|
+
'detail',
|
|
66
|
+
];
|
|
67
|
+
export { typographyDictionary, typographyInfoDictionary, typographyInputDictionary, typographyMonoDictionary, typographyReadDictionary, typographyReadingVariationsDictionary, typographySmallerDictionary, typographyTitleDictionary, typographyTooltipDictionary, typographyVariationsDictionary, };
|
package/dist/documentation.json
CHANGED
|
@@ -2,7 +2,7 @@ import { p as promiseResolve, b as bootstrapLazy } from './index-850d0543.js';
|
|
|
2
2
|
export { s as setNonce } from './index-850d0543.js';
|
|
3
3
|
|
|
4
4
|
/*
|
|
5
|
-
Stencil Client Patch Browser v4.
|
|
5
|
+
Stencil Client Patch Browser v4.7.1 | MIT Licensed | https://stenciljs.com
|
|
6
6
|
*/
|
|
7
7
|
const patchBrowser = () => {
|
|
8
8
|
const importMeta = import.meta.url;
|
|
@@ -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-2ba74223.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
|
|
119
119
|
System.import(url.href);
|
|
120
120
|
};
|
|
121
121
|
|
package/dist/stats.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2023-
|
|
2
|
+
"timestamp": "2023-11-08T18:00:17",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "node",
|
|
5
5
|
"version": "18.16.1"
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
"fsNamespace": "mds-table-row",
|
|
10
10
|
"components": 1,
|
|
11
11
|
"entries": 1,
|
|
12
|
-
"bundles":
|
|
12
|
+
"bundles": 64,
|
|
13
13
|
"outputs": [
|
|
14
14
|
{
|
|
15
15
|
"name": "dist-collection",
|
|
16
|
-
"files":
|
|
16
|
+
"files": 23,
|
|
17
17
|
"generatedFiles": [
|
|
18
18
|
"./dist/collection/common/aria.js",
|
|
19
19
|
"./dist/collection/common/keyboard-manager.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"./dist/collection/dictionary/color.js",
|
|
25
25
|
"./dist/collection/dictionary/floating-ui.js",
|
|
26
26
|
"./dist/collection/dictionary/icon.js",
|
|
27
|
-
"./dist/collection/dictionary/input
|
|
27
|
+
"./dist/collection/dictionary/input.js",
|
|
28
28
|
"./dist/collection/dictionary/loading.js",
|
|
29
29
|
"./dist/collection/dictionary/typography.js",
|
|
30
30
|
"./dist/collection/dictionary/variant.js",
|
|
@@ -34,8 +34,7 @@
|
|
|
34
34
|
"./dist/collection/type/button.js",
|
|
35
35
|
"./dist/collection/type/floating-ui.js",
|
|
36
36
|
"./dist/collection/type/form-rel.js",
|
|
37
|
-
"./dist/collection/type/input
|
|
38
|
-
"./dist/collection/type/input-value-type.js",
|
|
37
|
+
"./dist/collection/type/input.js",
|
|
39
38
|
"./dist/collection/type/loading.js",
|
|
40
39
|
"./dist/collection/type/typography.js",
|
|
41
40
|
"./dist/collection/type/variant.js"
|
|
@@ -76,19 +75,19 @@
|
|
|
76
75
|
"./dist/mds-table-row/mds-table-row.esm.js",
|
|
77
76
|
"./dist/mds-table-row/mds-table-row.js",
|
|
78
77
|
"./dist/mds-table-row/p-084e05de.system.js",
|
|
78
|
+
"./dist/mds-table-row/p-2ba74223.system.js",
|
|
79
79
|
"./dist/mds-table-row/p-50ea2036.system.js",
|
|
80
80
|
"./dist/mds-table-row/p-514bb1b7.js",
|
|
81
81
|
"./dist/mds-table-row/p-b0584083.entry.js",
|
|
82
|
-
"./dist/mds-table-row/p-ce48ed66.system.js",
|
|
83
82
|
"./dist/mds-table-row/p-e74701f9.system.entry.js",
|
|
84
83
|
"./www/build/index.esm.js",
|
|
85
84
|
"./www/build/mds-table-row.esm.js",
|
|
86
85
|
"./www/build/mds-table-row.js",
|
|
87
86
|
"./www/build/p-084e05de.system.js",
|
|
87
|
+
"./www/build/p-2ba74223.system.js",
|
|
88
88
|
"./www/build/p-50ea2036.system.js",
|
|
89
89
|
"./www/build/p-514bb1b7.js",
|
|
90
90
|
"./www/build/p-b0584083.entry.js",
|
|
91
|
-
"./www/build/p-ce48ed66.system.js",
|
|
92
91
|
"./www/build/p-e74701f9.system.entry.js"
|
|
93
92
|
]
|
|
94
93
|
},
|
|
@@ -408,7 +407,7 @@
|
|
|
408
407
|
"./src/fixtures/icons.json",
|
|
409
408
|
"./src/fixtures/iconsauce.json"
|
|
410
409
|
],
|
|
411
|
-
"./src/dictionary/input
|
|
410
|
+
"./src/dictionary/input.ts": [],
|
|
412
411
|
"./src/dictionary/loading.ts": [],
|
|
413
412
|
"./src/dictionary/typography.ts": [],
|
|
414
413
|
"./src/dictionary/variant.ts": [],
|
|
@@ -418,8 +417,7 @@
|
|
|
418
417
|
"./src/type/button.ts": [],
|
|
419
418
|
"./src/type/floating-ui.ts": [],
|
|
420
419
|
"./src/type/form-rel.ts": [],
|
|
421
|
-
"./src/type/input
|
|
422
|
-
"./src/type/input-value-type.ts": [],
|
|
420
|
+
"./src/type/input.ts": [],
|
|
423
421
|
"./src/type/loading.ts": [],
|
|
424
422
|
"./src/type/typography.ts": [],
|
|
425
423
|
"./src/type/variant.ts": []
|
|
@@ -7,4 +7,5 @@ declare const typographyInfoDictionary: string[];
|
|
|
7
7
|
declare const typographyReadDictionary: string[];
|
|
8
8
|
declare const typographySmallerDictionary: string[];
|
|
9
9
|
declare const typographyTooltipDictionary: string[];
|
|
10
|
-
|
|
10
|
+
declare const typographyInputDictionary: string[];
|
|
11
|
+
export { typographyDictionary, typographyInfoDictionary, typographyInputDictionary, typographyMonoDictionary, typographyReadDictionary, typographyReadingVariationsDictionary, typographySmallerDictionary, typographyTitleDictionary, typographyTooltipDictionary, typographyVariationsDictionary, };
|
|
@@ -1134,11 +1134,13 @@ export declare namespace JSXBase {
|
|
|
1134
1134
|
autocomplete?: string;
|
|
1135
1135
|
}
|
|
1136
1136
|
interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1137
|
+
height?: number;
|
|
1137
1138
|
media?: string;
|
|
1138
1139
|
sizes?: string;
|
|
1139
1140
|
src?: string;
|
|
1140
1141
|
srcSet?: string;
|
|
1141
1142
|
type?: string;
|
|
1143
|
+
width?: number;
|
|
1142
1144
|
}
|
|
1143
1145
|
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
1144
1146
|
media?: string;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export type InputControlsLayoutType = 'horizontal' | 'vertical';
|
|
2
|
+
export type InputControlsIconType = 'arrow' | 'arithmetic';
|
|
3
|
+
export type InputValueType = null | number | string | undefined;
|
|
4
|
+
export type InputTextType = 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'textarea' | 'time' | 'url';
|
|
@@ -7,3 +7,4 @@ export type TypographyReadType = 'caption' | 'detail' | 'paragraph';
|
|
|
7
7
|
export type TypographySmallerType = 'tip' | 'option';
|
|
8
8
|
export type TypographyMonoType = 'snippet' | 'hack';
|
|
9
9
|
export type TypographyTooltipType = 'caption' | 'detail' | 'tip';
|
|
10
|
+
export type TypographyInputType = 'snippet' | 'detail';
|
package/documentation.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2023-
|
|
2
|
+
"timestamp": "2023-11-08T17:30:27",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
|
-
"version": "4.
|
|
5
|
+
"version": "4.7.1",
|
|
6
6
|
"typescriptVersion": "5.2.2"
|
|
7
7
|
},
|
|
8
8
|
"components": [
|
|
@@ -271,28 +271,38 @@
|
|
|
271
271
|
"docstring": "",
|
|
272
272
|
"path": "src/type/autocomplete.ts"
|
|
273
273
|
},
|
|
274
|
+
"src/type/input.ts::InputControlsLayoutType": {
|
|
275
|
+
"declaration": "export type InputControlsLayoutType =\n | 'horizontal'\n | 'vertical'",
|
|
276
|
+
"docstring": "",
|
|
277
|
+
"path": "src/type/input.ts"
|
|
278
|
+
},
|
|
279
|
+
"src/type/input.ts::InputControlsIconType": {
|
|
280
|
+
"declaration": "export type InputControlsIconType =\n | 'arrow'\n | 'arithmetic'",
|
|
281
|
+
"docstring": "",
|
|
282
|
+
"path": "src/type/input.ts"
|
|
283
|
+
},
|
|
274
284
|
"src/type/variant.ts::ThemeStatusVariantType": {
|
|
275
285
|
"declaration": "export type ThemeStatusVariantType =\n | 'error'\n | 'info'\n | 'success'\n | 'warning'",
|
|
276
286
|
"docstring": "",
|
|
277
287
|
"path": "src/type/variant.ts"
|
|
278
288
|
},
|
|
279
|
-
"src/type/input
|
|
289
|
+
"src/type/input.ts::InputTextType": {
|
|
280
290
|
"declaration": "export type InputTextType =\n | 'date'\n | 'email'\n | 'number'\n | 'password'\n | 'search'\n | 'tel'\n | 'text'\n | 'textarea'\n | 'time'\n | 'url'",
|
|
281
291
|
"docstring": "",
|
|
282
|
-
"path": "src/type/input
|
|
292
|
+
"path": "src/type/input.ts"
|
|
283
293
|
},
|
|
284
|
-
"src/type/
|
|
285
|
-
"declaration": "export type
|
|
294
|
+
"src/type/typography.ts::TypographyInputType": {
|
|
295
|
+
"declaration": "export type TypographyInputType =\n | 'snippet'\n | 'detail'",
|
|
286
296
|
"docstring": "",
|
|
287
|
-
"path": "src/type/
|
|
297
|
+
"path": "src/type/typography.ts"
|
|
288
298
|
},
|
|
289
|
-
"src/components/mds-input/meta/
|
|
290
|
-
"declaration": "export interface
|
|
299
|
+
"src/components/mds-input/meta/event-detail.ts::MdsInputEventDetail": {
|
|
300
|
+
"declaration": "export interface MdsInputEventDetail {\n value?: string\n}",
|
|
291
301
|
"docstring": "",
|
|
292
|
-
"path": "src/components/mds-input/meta/
|
|
302
|
+
"path": "src/components/mds-input/meta/event-detail.ts"
|
|
293
303
|
},
|
|
294
304
|
"src/components/mds-input-field/meta/types.ts::ValidationModelType": {
|
|
295
|
-
"declaration": "export type ValidationModelType =\n | 'cf'\n | 'email'\n | 'isbn'\n | 'piva'",
|
|
305
|
+
"declaration": "export type ValidationModelType =\n | 'cc'\n | 'cf'\n | 'email'\n | 'isbn'\n | 'piva'",
|
|
296
306
|
"docstring": "",
|
|
297
307
|
"path": "src/components/mds-input-field/meta/types.ts"
|
|
298
308
|
},
|
|
@@ -311,6 +321,11 @@
|
|
|
311
321
|
"docstring": "",
|
|
312
322
|
"path": "src/components/mds-input-switch/meta/types.ts"
|
|
313
323
|
},
|
|
324
|
+
"src/type/input.ts::InputValueType": {
|
|
325
|
+
"declaration": "export type InputValueType =\n | null\n | number\n | string\n | undefined",
|
|
326
|
+
"docstring": "",
|
|
327
|
+
"path": "src/type/input.ts"
|
|
328
|
+
},
|
|
314
329
|
"src/type/typography.ts::TypographyType": {
|
|
315
330
|
"declaration": "export type TypographyType =\n | 'action'\n | 'caption'\n | 'snippet'\n | 'detail'\n | 'h1'\n | 'h2'\n | 'h3'\n | 'h4'\n | 'h5'\n | 'h6'\n | 'hack'\n | 'label'\n | 'option'\n | 'paragraph'\n | 'tip'",
|
|
316
331
|
"docstring": "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maggioli-design-system/mds-table-row",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"description": "mds-table-row is a web-component from Magma Design System, 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",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"prepublishOnly": "npm run build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@maggioli-design-system/mds-table-cell": "
|
|
27
|
-
"@maggioli-design-system/styles": "
|
|
28
|
-
"@stencil/core": "
|
|
26
|
+
"@maggioli-design-system/mds-table-cell": "4.4.0",
|
|
27
|
+
"@maggioli-design-system/styles": "13.0.0",
|
|
28
|
+
"@stencil/core": "4.7.1"
|
|
29
29
|
},
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"author": {
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
const inputTextTypeDictionary = [
|
|
2
|
+
'date',
|
|
3
|
+
'email',
|
|
4
|
+
'number',
|
|
5
|
+
'password',
|
|
6
|
+
'search',
|
|
7
|
+
'tel',
|
|
8
|
+
'text',
|
|
9
|
+
'textarea',
|
|
10
|
+
'time',
|
|
11
|
+
'url',
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
const inputControlsLayoutDictionary = [
|
|
16
|
+
'horizontal',
|
|
17
|
+
'vertical',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
const inputControlsIconDictionary = [
|
|
21
|
+
'arrow',
|
|
22
|
+
'arithmetic',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
export {
|
|
26
|
+
inputControlsIconDictionary,
|
|
27
|
+
inputControlsLayoutDictionary,
|
|
28
|
+
inputTextTypeDictionary,
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -69,12 +69,18 @@ const typographyTooltipDictionary = [
|
|
|
69
69
|
'tip',
|
|
70
70
|
]
|
|
71
71
|
|
|
72
|
+
const typographyInputDictionary = [
|
|
73
|
+
'snippet',
|
|
74
|
+
'detail',
|
|
75
|
+
]
|
|
76
|
+
|
|
72
77
|
export {
|
|
73
78
|
typographyDictionary,
|
|
74
79
|
typographyInfoDictionary,
|
|
75
|
-
|
|
80
|
+
typographyInputDictionary,
|
|
76
81
|
typographyMonoDictionary,
|
|
77
82
|
typographyReadDictionary,
|
|
83
|
+
typographyReadingVariationsDictionary,
|
|
78
84
|
typographySmallerDictionary,
|
|
79
85
|
typographyTitleDictionary,
|
|
80
86
|
typographyTooltipDictionary,
|
package/src/fixtures/icons.json
CHANGED
|
@@ -74,6 +74,7 @@
|
|
|
74
74
|
"mgg/email-open-check",
|
|
75
75
|
"mgg/email-open-off",
|
|
76
76
|
"mgg/face-to-face-meeting",
|
|
77
|
+
"mgg/factory",
|
|
77
78
|
"mgg/farmer",
|
|
78
79
|
"mgg/field",
|
|
79
80
|
"mgg/file-download",
|
|
@@ -99,6 +100,8 @@
|
|
|
99
100
|
"mgg/forwarded-with-a-single-sending",
|
|
100
101
|
"mgg/fullscreen-on-alt",
|
|
101
102
|
"mgg/google-check-small",
|
|
103
|
+
"mgg/google-keyboard-double-arrow-down",
|
|
104
|
+
"mgg/google-keyboard-double-arrow-up",
|
|
102
105
|
"mgg/google-place-item",
|
|
103
106
|
"mgg/group-assigned-automatically-system",
|
|
104
107
|
"mgg/group-ceased",
|
|
@@ -197,6 +200,19 @@
|
|
|
197
200
|
"mgg/tea-light",
|
|
198
201
|
"mgg/terminal",
|
|
199
202
|
"mgg/todo",
|
|
203
|
+
"mgg/todo-action-businessman-view",
|
|
204
|
+
"mgg/todo-action-certificate",
|
|
205
|
+
"mgg/todo-action-contract",
|
|
206
|
+
"mgg/todo-action-currency-euro",
|
|
207
|
+
"mgg/todo-action-graduate",
|
|
208
|
+
"mgg/todo-action-graduation-hat",
|
|
209
|
+
"mgg/todo-action-judge",
|
|
210
|
+
"mgg/todo-action-money",
|
|
211
|
+
"mgg/todo-action-protocol",
|
|
212
|
+
"mgg/todo-action-upload",
|
|
213
|
+
"mgg/todo-action-wkf-document-checked",
|
|
214
|
+
"mgg/todo-action-wkf-people-checked",
|
|
215
|
+
"mgg/todo-action-wkf-set-pub-date",
|
|
200
216
|
"mgg/todo-completed",
|
|
201
217
|
"mgg/todo-completed-re-executable",
|
|
202
218
|
"mgg/todo-in-charge-by-me",
|
|
@@ -223,6 +239,7 @@
|
|
|
223
239
|
"mgg/work-book",
|
|
224
240
|
"mi/baseline/account-balance",
|
|
225
241
|
"mi/baseline/account-balance-wallet",
|
|
242
|
+
"mi/baseline/add",
|
|
226
243
|
"mi/baseline/adobe",
|
|
227
244
|
"mi/baseline/agriculture",
|
|
228
245
|
"mi/baseline/arrow-back",
|
|
@@ -263,6 +280,7 @@
|
|
|
263
280
|
"mi/baseline/pets",
|
|
264
281
|
"mi/baseline/radio-button-checked",
|
|
265
282
|
"mi/baseline/radio-button-unchecked",
|
|
283
|
+
"mi/baseline/remove",
|
|
266
284
|
"mi/baseline/route",
|
|
267
285
|
"mi/baseline/settings",
|
|
268
286
|
"mi/baseline/terminal",
|
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
"mgg/email-open-check",
|
|
64
64
|
"mgg/email-open-off",
|
|
65
65
|
"mgg/face-to-face-meeting",
|
|
66
|
+
"mgg/factory",
|
|
66
67
|
"mgg/farmer",
|
|
67
68
|
"mgg/field",
|
|
68
69
|
"mgg/file-download",
|
|
@@ -88,6 +89,8 @@
|
|
|
88
89
|
"mgg/forwarded-with-a-single-sending",
|
|
89
90
|
"mgg/fullscreen-on-alt",
|
|
90
91
|
"mgg/google-check-small",
|
|
92
|
+
"mgg/google-keyboard-double-arrow-down",
|
|
93
|
+
"mgg/google-keyboard-double-arrow-up",
|
|
91
94
|
"mgg/google-place-item",
|
|
92
95
|
"mgg/group-assigned-automatically-system",
|
|
93
96
|
"mgg/group-ceased",
|
|
@@ -185,6 +188,19 @@
|
|
|
185
188
|
"mgg/subtractive-permission",
|
|
186
189
|
"mgg/tea-light",
|
|
187
190
|
"mgg/terminal",
|
|
191
|
+
"mgg/todo-action-businessman-view",
|
|
192
|
+
"mgg/todo-action-certificate",
|
|
193
|
+
"mgg/todo-action-contract",
|
|
194
|
+
"mgg/todo-action-currency-euro",
|
|
195
|
+
"mgg/todo-action-graduate",
|
|
196
|
+
"mgg/todo-action-graduation-hat",
|
|
197
|
+
"mgg/todo-action-judge",
|
|
198
|
+
"mgg/todo-action-money",
|
|
199
|
+
"mgg/todo-action-protocol",
|
|
200
|
+
"mgg/todo-action-upload",
|
|
201
|
+
"mgg/todo-action-wkf-document-checked",
|
|
202
|
+
"mgg/todo-action-wkf-people-checked",
|
|
203
|
+
"mgg/todo-action-wkf-set-pub-date",
|
|
188
204
|
"mgg/todo-completed-re-executable",
|
|
189
205
|
"mgg/todo-completed",
|
|
190
206
|
"mgg/todo-in-charge-by-me",
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export type InputControlsLayoutType =
|
|
2
|
+
| 'horizontal'
|
|
3
|
+
| 'vertical'
|
|
4
|
+
|
|
5
|
+
export type InputControlsIconType =
|
|
6
|
+
| 'arrow'
|
|
7
|
+
| 'arithmetic'
|
|
8
|
+
|
|
9
|
+
export type InputValueType =
|
|
10
|
+
| null
|
|
11
|
+
| number
|
|
12
|
+
| string
|
|
13
|
+
| undefined
|
|
14
|
+
|
|
15
|
+
export type InputTextType =
|
|
16
|
+
| 'date'
|
|
17
|
+
| 'email'
|
|
18
|
+
| 'number'
|
|
19
|
+
| 'password'
|
|
20
|
+
| 'search'
|
|
21
|
+
| 'tel'
|
|
22
|
+
| 'text'
|
|
23
|
+
| 'textarea'
|
|
24
|
+
| 'time'
|
|
25
|
+
| 'url'
|
package/src/type/typography.ts
CHANGED
|
@@ -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-2ba74223.system.js', new URL(resourcesUrl, window.location.origin !== 'null' ? window.location.origin : undefined));
|
|
119
119
|
System.import(url.href);
|
|
120
120
|
};
|
|
121
121
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type InputTextType = 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'textarea' | 'time' | 'url';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export type InputValueType = null | number | string | undefined;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|