@candlerip/shared3 0.0.72 → 0.0.73
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/src/dictionary/dictionary/page-dictionary/page-dictionary/domain.d.ts +2 -1
- package/src/page/index.d.ts +1 -0
- package/src/page/index.js +1 -0
- package/src/page/page/config.d.ts +1 -1
- package/src/page/page/config.js +1 -1
- package/src/page/page-data/add-candle-page-data/domain.d.ts +6 -0
- package/src/page/page-data/add-candle-page-data/domain.js +1 -0
- package/src/page/page-data/add-candle-page-data/index.d.ts +1 -0
- package/src/page/page-data/add-candle-page-data/index.js +1 -0
- package/src/page/page-data/index.d.ts +1 -0
- package/src/page/page-data/index.js +1 -0
- package/src/ssr/server-side-props/add-candle-page-server-side-props/domain.d.ts +5 -0
- package/src/ssr/server-side-props/add-candle-page-server-side-props/domain.js +1 -0
- package/src/ssr/server-side-props/add-candle-page-server-side-props/index.d.ts +1 -0
- package/src/ssr/server-side-props/add-candle-page-server-side-props/index.js +1 -0
- package/src/ssr/server-side-props/index.d.ts +1 -0
- package/src/ssr/server-side-props/index.js +1 -0
- package/src/ssr/server-side-props/server-side-props/domain.d.ts +2 -1
package/package.json
CHANGED
@@ -1,6 +1,7 @@
|
|
1
|
+
import { AddCandlePageDictionary } from '../add-candle-page-dictionary/index.js';
|
1
2
|
import { ContactPageDictionary } from '../contact-page-dictionary/domain.js';
|
2
3
|
import { CookiePolicyPageDictionary } from '../cookie-policy-page-dictionary/domain.js';
|
3
4
|
import { HelpPageDictionary } from '../help-page-dictionary/domain.js';
|
4
5
|
import { HomePageDictionary } from '../home-page-dictionary/domain.js';
|
5
6
|
import { TermsAndConditionsPageDictionary } from '../terms-and-conditions-page-dictionary/domain.js';
|
6
|
-
export type PageDictionary = ContactPageDictionary | CookiePolicyPageDictionary | HelpPageDictionary | HomePageDictionary | TermsAndConditionsPageDictionary;
|
7
|
+
export type PageDictionary = AddCandlePageDictionary | ContactPageDictionary | CookiePolicyPageDictionary | HelpPageDictionary | HomePageDictionary | TermsAndConditionsPageDictionary;
|
package/src/page/index.d.ts
CHANGED
package/src/page/index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export declare const PAGES: readonly ["home-page", "contact-page", "cookie-policy-page", "help-page", "terms-and-conditions-page"];
|
1
|
+
export declare const PAGES: readonly ["add-candle-page", "home-page", "contact-page", "cookie-policy-page", "help-page", "terms-and-conditions-page"];
|
package/src/page/page/config.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export const PAGES = ['home-page', 'contact-page', 'cookie-policy-page', 'help-page', 'terms-and-conditions-page'];
|
1
|
+
export const PAGES = ['add-candle-page', 'home-page', 'contact-page', 'cookie-policy-page', 'help-page', 'terms-and-conditions-page'];
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './domain.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './domain.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './add-candle-page-data/domain.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './add-candle-page-data/domain.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './domain.js';
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './domain.js';
|
@@ -1,5 +1,6 @@
|
|
1
|
+
import { AddCandlePageServerSideProps } from '../add-candle-page-server-side-props/index.js';
|
1
2
|
import { ContactPageServerSideProps } from '../contact-page-server-side-props/domain.js';
|
2
3
|
import { CookiePolicyPageServerSideProps } from '../cookie-policy-page-server-side-props/domain.js';
|
3
4
|
import { HelpPageServerSideProps } from '../help-page-server-side-props/domain.js';
|
4
5
|
import { TermsAndConditionsPageServerSideProps } from '../terms-and-conditions-page-server-side-props/domain.js';
|
5
|
-
export type ServerSideProps = ContactPageServerSideProps | CookiePolicyPageServerSideProps | HelpPageServerSideProps | TermsAndConditionsPageServerSideProps;
|
6
|
+
export type ServerSideProps = AddCandlePageServerSideProps | ContactPageServerSideProps | CookiePolicyPageServerSideProps | HelpPageServerSideProps | TermsAndConditionsPageServerSideProps;
|