mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-21 15:54:57 +00:00
Compare commits
6 Commits
@rocket/la
...
@mdjs/mdjs
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
989758ce03 | ||
|
|
fbcedde7a0 | ||
|
|
d72427d889 | ||
|
|
b7d5cbacf3 | ||
|
|
8d8c756607 | ||
|
|
3750c4e7a2 |
@@ -25,7 +25,7 @@ export function fireTheme() {
|
|||||||
|
|
||||||
Once you have that you can start filling in content you need.
|
Once you have that you can start filling in content you need.
|
||||||
|
|
||||||
For example a we could override the full `layout.css` by adding a it like so
|
For example we could override the full `layout.css` by adding it like so
|
||||||
|
|
||||||
👉 `fire-theme/layout.css`
|
👉 `fire-theme/layout.css`
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# @rocket/launch
|
# @rocket/launch
|
||||||
|
|
||||||
|
## 0.5.3
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- b7d5cba: remove footer extra comma
|
||||||
|
|
||||||
## 0.5.2
|
## 0.5.2
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@rocket/launch",
|
"name": "@rocket/launch",
|
||||||
"version": "0.5.2",
|
"version": "0.5.3",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
{
|
{
|
||||||
"text": "Twitter",
|
"text": "Twitter",
|
||||||
"href": "https://twitter.com/modern_web_dev"
|
"href": "https://twitter.com/modern_web_dev"
|
||||||
},
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,5 +1,11 @@
|
|||||||
# @mdjs/mdjs-preview
|
# @mdjs/mdjs-preview
|
||||||
|
|
||||||
|
## 0.5.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- fbcedde: Get a scoped registry for the internal accordion element to no longer pollute the global registry with a `lion-accordion` element.
|
||||||
|
|
||||||
## 0.5.0
|
## 0.5.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@mdjs/mdjs-preview",
|
"name": "@mdjs/mdjs-preview",
|
||||||
"version": "0.5.0",
|
"version": "0.5.1",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
@@ -31,7 +31,8 @@
|
|||||||
"src"
|
"src"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@lion/accordion": "^0.4.2",
|
"@lion/accordion": "^0.6.1",
|
||||||
|
"@open-wc/scoped-elements": "^2.0.0-next.3",
|
||||||
"lit": "^2.0.0-rc.2"
|
"lit": "^2.0.0-rc.2"
|
||||||
},
|
},
|
||||||
"types": "dist-types/index.d.ts"
|
"types": "dist-types/index.d.ts"
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import { LitElement, html, css, nothing, render } from 'lit';
|
import { LitElement, html, css, nothing, render } from 'lit';
|
||||||
import '@lion/accordion/define';
|
import { ScopedElementsMixin } from '@open-wc/scoped-elements';
|
||||||
|
import { LionAccordion } from '@lion/accordion';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
subscribe,
|
subscribe,
|
||||||
@@ -22,7 +23,13 @@ import { addResizeHandler } from './resizeHandler.js';
|
|||||||
* @element mdjs-preview
|
* @element mdjs-preview
|
||||||
* @prop {StoryFn} [story=(() => TemplateResult)] Function that returns the story
|
* @prop {StoryFn} [story=(() => TemplateResult)] Function that returns the story
|
||||||
*/
|
*/
|
||||||
export class MdJsPreview extends LitElement {
|
export class MdJsPreview extends ScopedElementsMixin(LitElement) {
|
||||||
|
static get scopedElements() {
|
||||||
|
return {
|
||||||
|
'lion-accordion': LionAccordion,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
static get properties() {
|
static get properties() {
|
||||||
return {
|
return {
|
||||||
story: {
|
story: {
|
||||||
|
|||||||
19
yarn.lock
19
yarn.lock
@@ -1103,12 +1103,12 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@types/chai" "^4.2.12"
|
"@types/chai" "^4.2.12"
|
||||||
|
|
||||||
"@lion/accordion@^0.4.2":
|
"@lion/accordion@^0.6.1":
|
||||||
version "0.4.2"
|
version "0.6.1"
|
||||||
resolved "https://registry.yarnpkg.com/@lion/accordion/-/accordion-0.4.2.tgz#efeb56360113a2b68e182ff29ef0932edd17df8c"
|
resolved "https://registry.yarnpkg.com/@lion/accordion/-/accordion-0.6.1.tgz#fe10e9e7cc540a10ad4d87f8421e436f6110f026"
|
||||||
integrity sha512-xETjNmpBWYO1tYx2nBMq0I45UgydUJafZ4ft3szH3fQFjYWSBwjJjKsWxIhZSqX/IoTJzA0nNCdtbXoVEbSCLg==
|
integrity sha512-0s+puCY2yfCingyjzBZN+g2mpRZ8h8w470ZKmF4oTHitCFdT41kb5tfOHo57SStSLjqET3Qq8FAvFs1KBPMGqg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@lion/core" "0.16.0"
|
"@lion/core" "0.18.1"
|
||||||
|
|
||||||
"@lion/combobox@^0.8.0":
|
"@lion/combobox@^0.8.0":
|
||||||
version "0.8.0"
|
version "0.8.0"
|
||||||
@@ -1139,6 +1139,15 @@
|
|||||||
"@open-wc/scoped-elements" "^2.0.0-next.3"
|
"@open-wc/scoped-elements" "^2.0.0-next.3"
|
||||||
lit "^2.0.0-rc.2"
|
lit "^2.0.0-rc.2"
|
||||||
|
|
||||||
|
"@lion/core@0.18.1":
|
||||||
|
version "0.18.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@lion/core/-/core-0.18.1.tgz#cacad48bdc7c1382148f208c7feff8ec2dbb4263"
|
||||||
|
integrity sha512-eazXRm6oqxOJXEf95bVbBVsOFxUA63yEtf8MHHd6cmJEIIWn7VQS8gq4fVe4jydyP6aOHccZSIom5zuQBOpkyg==
|
||||||
|
dependencies:
|
||||||
|
"@open-wc/dedupe-mixin" "^1.2.18"
|
||||||
|
"@open-wc/scoped-elements" "^2.0.0-next.3"
|
||||||
|
lit "^2.0.0-rc.2"
|
||||||
|
|
||||||
"@lion/form-core@0.14.1":
|
"@lion/form-core@0.14.1":
|
||||||
version "0.14.1"
|
version "0.14.1"
|
||||||
resolved "https://registry.yarnpkg.com/@lion/form-core/-/form-core-0.14.1.tgz#404e047e32ea56ae5318db6444809cf83089d5f3"
|
resolved "https://registry.yarnpkg.com/@lion/form-core/-/form-core-0.14.1.tgz#404e047e32ea56ae5318db6444809cf83089d5f3"
|
||||||
|
|||||||
Reference in New Issue
Block a user