@operato/shell 9.0.0-beta.6 → 9.0.0-beta.88
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/CHANGELOG.md +157 -0
- package/dist/src/app/app.js +15 -10
- package/dist/src/app/app.js.map +1 -1
- package/dist/src/app/pages/page-404.js +17 -17
- package/dist/src/app/pages/page-404.js.map +1 -1
- package/dist/src/entries/public/home.js +28 -28
- package/dist/src/entries/public/home.js.map +1 -1
- package/dist/src/object-store.js +4 -6
- package/dist/src/object-store.js.map +1 -1
- package/dist/src/reducers/app.js +2 -1
- package/dist/src/reducers/app.js.map +1 -1
- package/dist/src/reducers/route.js +1 -2
- package/dist/src/reducers/route.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -6
- package/dist/stories/app.stories.d.ts +0 -22
- package/dist/stories/app.stories.js +0 -38
- package/dist/stories/app.stories.js.map +0 -1
- package/yarn-error.log +0 -17014
package/package.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"name": "@operato/shell",
|
3
3
|
"description": "WebApplication architecturing shell following open-wc recommendations",
|
4
4
|
"author": "heartyoh",
|
5
|
-
"version": "9.0.0-beta.
|
5
|
+
"version": "9.0.0-beta.88",
|
6
6
|
"type": "module",
|
7
7
|
"main": "dist/src/index.js",
|
8
8
|
"module": "dist/src/index.js",
|
@@ -60,10 +60,10 @@
|
|
60
60
|
},
|
61
61
|
"dependencies": {
|
62
62
|
"@material/web": "^2.0.0",
|
63
|
-
"@operato/graphql": "^9.0.0-beta.
|
64
|
-
"@operato/popup": "^9.0.0-beta.
|
65
|
-
"@operato/styles": "^9.0.0-beta.
|
66
|
-
"@operato/utils": "^9.0.0-beta.
|
63
|
+
"@operato/graphql": "^9.0.0-beta.88",
|
64
|
+
"@operato/popup": "^9.0.0-beta.52",
|
65
|
+
"@operato/styles": "^9.0.0-beta.47",
|
66
|
+
"@operato/utils": "^9.0.0-beta.38",
|
67
67
|
"@webcomponents/scoped-custom-element-registry": "^0.0.9",
|
68
68
|
"lit": "^3.1.2",
|
69
69
|
"lodash-es": "^4.17.21",
|
@@ -103,5 +103,5 @@
|
|
103
103
|
"prettier --write"
|
104
104
|
]
|
105
105
|
},
|
106
|
-
"gitHead": "
|
106
|
+
"gitHead": "631f9a520238f4c70111e00e82b08410f0efd480"
|
107
107
|
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
import '@material/web/icon/icon.js';
|
2
|
-
import { TemplateResult } from 'lit';
|
3
|
-
import '../src/app/app.js';
|
4
|
-
declare const _default: {
|
5
|
-
title: string;
|
6
|
-
component: string;
|
7
|
-
argTypes: {
|
8
|
-
label: {
|
9
|
-
control: string;
|
10
|
-
};
|
11
|
-
};
|
12
|
-
};
|
13
|
-
export default _default;
|
14
|
-
interface Story<T> {
|
15
|
-
(args: T): TemplateResult;
|
16
|
-
args?: Partial<T>;
|
17
|
-
argTypes?: Record<string, unknown>;
|
18
|
-
}
|
19
|
-
interface ArgTypes {
|
20
|
-
label?: string;
|
21
|
-
}
|
22
|
-
export declare const Regular: Story<ArgTypes>;
|
@@ -1,38 +0,0 @@
|
|
1
|
-
import '@material/web/icon/icon.js';
|
2
|
-
import { html } from 'lit';
|
3
|
-
import '../src/app/app.js';
|
4
|
-
export default {
|
5
|
-
title: 'things-app',
|
6
|
-
component: 'things-app',
|
7
|
-
argTypes: {
|
8
|
-
label: { control: 'string' }
|
9
|
-
}
|
10
|
-
};
|
11
|
-
const Template = ({ label = '' }) => html `
|
12
|
-
<link href="/themes/app-theme.css" rel="stylesheet" />
|
13
|
-
<link
|
14
|
-
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL@20..48,100..700,0..1"
|
15
|
-
rel="stylesheet"
|
16
|
-
/>
|
17
|
-
<link
|
18
|
-
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL@20..48,100..700,0..1"
|
19
|
-
rel="stylesheet"
|
20
|
-
/>
|
21
|
-
<link
|
22
|
-
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL@20..48,100..700,0..1"
|
23
|
-
rel="stylesheet"
|
24
|
-
/>
|
25
|
-
|
26
|
-
<style>
|
27
|
-
body {
|
28
|
-
background-color: var(--md-sys-color-surface);
|
29
|
-
}
|
30
|
-
</style>
|
31
|
-
|
32
|
-
<things-app></things-app>
|
33
|
-
`;
|
34
|
-
export const Regular = Template.bind({});
|
35
|
-
Regular.args = {
|
36
|
-
label: 'common header styles'
|
37
|
-
};
|
38
|
-
//# sourceMappingURL=app.stories.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"app.stories.js","sourceRoot":"","sources":["../../stories/app.stories.ts"],"names":[],"mappings":"AAAA,OAAO,4BAA4B,CAAA;AAEnC,OAAO,EAAO,IAAI,EAA0B,MAAM,KAAK,CAAA;AACvD,OAAO,mBAAmB,CAAA;AAE1B,eAAe;IACb,KAAK,EAAE,YAAY;IACnB,SAAS,EAAE,YAAY;IACvB,QAAQ,EAAE;QACR,KAAK,EAAE,EAAE,OAAO,EAAE,QAAQ,EAAE;KAC7B;CACF,CAAA;AAYD,MAAM,QAAQ,GAAoB,CAAC,EAAE,KAAK,GAAG,EAAE,EAAY,EAAE,EAAE,CAAC,IAAI,CAAA;;;;;;;;;;;;;;;;;;;;;;CAsBnE,CAAA;AAED,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,CAAA;AACxC,OAAO,CAAC,IAAI,GAAG;IACb,KAAK,EAAE,sBAAsB;CAC9B,CAAA","sourcesContent":["import '@material/web/icon/icon.js'\n\nimport { css, html, render, TemplateResult } from 'lit'\nimport '../src/app/app.js'\n\nexport default {\n title: 'things-app',\n component: 'things-app',\n argTypes: {\n label: { control: 'string' }\n }\n}\n\ninterface Story<T> {\n (args: T): TemplateResult\n args?: Partial<T>\n argTypes?: Record<string, unknown>\n}\n\ninterface ArgTypes {\n label?: string\n}\n\nconst Template: Story<ArgTypes> = ({ label = '' }: ArgTypes) => html`\n <link href=\"/themes/app-theme.css\" rel=\"stylesheet\" />\n <link\n href=\"https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL@20..48,100..700,0..1\"\n rel=\"stylesheet\"\n />\n <link\n href=\"https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL@20..48,100..700,0..1\"\n rel=\"stylesheet\"\n />\n <link\n href=\"https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL@20..48,100..700,0..1\"\n rel=\"stylesheet\"\n />\n\n <style>\n body {\n background-color: var(--md-sys-color-surface);\n }\n </style>\n\n <things-app></things-app>\n`\n\nexport const Regular = Template.bind({})\nRegular.args = {\n label: 'common header styles'\n}\n"]}
|