Refactor/reacrhitecture to fsd+ #49
@@ -8,7 +8,7 @@
|
|||||||
* @example
|
* @example
|
||||||
* ```svelte
|
* ```svelte
|
||||||
* <script lang="ts">
|
* <script lang="ts">
|
||||||
* import { scrollBreadcrumbsStore } from '$entities/Breadcrumb';
|
* import { scrollBreadcrumbsStore } from '$features/Breadcrumb';
|
||||||
* import { onMount } from 'svelte';
|
* import { onMount } from 'svelte';
|
||||||
*
|
*
|
||||||
* onMount(() => {
|
* onMount(() => {
|
||||||
+1
-1
@@ -15,7 +15,7 @@
|
|||||||
* @example
|
* @example
|
||||||
* ```svelte
|
* ```svelte
|
||||||
* <script lang="ts">
|
* <script lang="ts">
|
||||||
* import { scrollBreadcrumbsStore } from '$entities/Breadcrumb';
|
* import { scrollBreadcrumbsStore } from '$features/Breadcrumb';
|
||||||
*
|
*
|
||||||
* onMount(() => {
|
* onMount(() => {
|
||||||
* scrollBreadcrumbsStore.add({
|
* scrollBreadcrumbsStore.add({
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
Owns all shared state and wires the pieces together.
|
Owns all shared state and wires the pieces together.
|
||||||
-->
|
-->
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { NavigationWrapper } from '$entities/Breadcrumb';
|
import { NavigationWrapper } from '$features/Breadcrumb';
|
||||||
import type { ResponsiveManager } from '$shared/lib';
|
import type { ResponsiveManager } from '$shared/lib';
|
||||||
import { SidebarContainer } from '$shared/ui';
|
import { SidebarContainer } from '$shared/ui';
|
||||||
import {
|
import {
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
Wraps FontSearch with a Section component
|
Wraps FontSearch with a Section component
|
||||||
-->
|
-->
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { NavigationWrapper } from '$entities/Breadcrumb';
|
import { NavigationWrapper } from '$features/Breadcrumb';
|
||||||
import type { ResponsiveManager } from '$shared/lib';
|
import type { ResponsiveManager } from '$shared/lib';
|
||||||
import { cn } from '$shared/lib';
|
import { cn } from '$shared/lib';
|
||||||
import { Section } from '$shared/ui';
|
import { Section } from '$shared/ui';
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
Wraps SampleList with a Section component
|
Wraps SampleList with a Section component
|
||||||
-->
|
-->
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { NavigationWrapper } from '$entities/Breadcrumb';
|
|
||||||
import { fontCatalogStore } from '$entities/Font';
|
import { fontCatalogStore } from '$entities/Font';
|
||||||
|
import { NavigationWrapper } from '$features/Breadcrumb';
|
||||||
import type { ResponsiveManager } from '$shared/lib';
|
import type { ResponsiveManager } from '$shared/lib';
|
||||||
import { cn } from '$shared/lib';
|
import { cn } from '$shared/lib';
|
||||||
import {
|
import {
|
||||||
|
|||||||
Reference in New Issue
Block a user