@asaleh37/ui-base 1.0.7 → 1.0.8
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/index.d.ts +5 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/index.ts +5 -0
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var e=require("react/jsx-runtime"),r=require("react-redux"),
|
|
1
|
+
"use strict";var e=require("react/jsx-runtime"),r=require("react-redux"),t=require("@reduxjs/toolkit"),n=require("@mui/material"),o=require("@fortawesome/fontawesome-svg-core"),c=require("@fortawesome/free-brands-svg-icons"),i=require("@fortawesome/free-regular-svg-icons"),a=require("@fortawesome/free-solid-svg-icons"),s=require("@mui/x-license");require("react-toastify/dist/ReactToastify.css");var u=require("zod"),f=require("react-toastify"),l=require("@fortawesome/react-fontawesome"),d=t.createSlice({name:"counter",initialState:{value:0},reducers:{increament:function(e){e.value=e.value+1},decreament:function(e){e.value=e.value-1}}}),m=d.actions,p=d.reducer,b=t.configureStore({reducer:{counter:p}}),x=function(){var t=r.useSelector((function(e){return e.counter.value})),o=r.useDispatch();return e.jsxs(e.Fragment,{children:[e.jsxs("div",{children:["Counter : ",t]}),e.jsx(n.Button,{variant:"contained",color:"success",onClick:function(){o(m.increament())},children:"increment"}),e.jsx(n.Button,{variant:"contained",color:"error",onClick:function(){o(m.decreament())},children:"decrement"})]})};s.LicenseInfo.setLicenseKey("c2bd611fa642666253500ab9c8e4f78fTz0xMTE4MjEsRT0xNzc2OTg4Nzk5MDAwLFM9cHJlbWl1bSxMTT1zdWJzY3JpcHRpb24sUFY9aW5pdGlhbCxLVj0y"),o.library.add(c.fab),o.library.add(i.far),o.library.add(a.fas);Object.defineProperty(exports,"toast",{enumerable:!0,get:function(){return f.toast}}),Object.defineProperty(exports,"FontAwesomeIcon",{enumerable:!0,get:function(){return l.FontAwesomeIcon}}),exports.BaseApp=function(t){return e.jsxs(r.Provider,{store:b,children:[e.jsx("div",{children:"Base App"}),e.jsx(x,{})]})},Object.keys(n).forEach((function(e){"default"===e||Object.prototype.hasOwnProperty.call(exports,e)||Object.defineProperty(exports,e,{enumerable:!0,get:function(){return n[e]}})})),Object.keys(u).forEach((function(e){"default"===e||Object.prototype.hasOwnProperty.call(exports,e)||Object.defineProperty(exports,e,{enumerable:!0,get:function(){return u[e]}})}));
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/redux/CounterSlice.ts","../src/redux/store.ts","../src/components/Counter.tsx","../src/components/BaseApp.tsx"],"sourcesContent":["import { createSlice } from \"@reduxjs/toolkit\";\r\n\r\nconst CounterSlice = createSlice({\r\n name: \"counter\",\r\n initialState: { value: 0 },\r\n reducers: {\r\n increament: (state) => {\r\n state.value = state.value + 1;\r\n },\r\n decreament: (state) => {\r\n state.value = state.value - 1;\r\n },\r\n },\r\n});\r\n\r\nexport const CounterActions = CounterSlice.actions;\r\nexport default CounterSlice.reducer;\r\n","import { configureStore } from \"@reduxjs/toolkit\";\r\nimport CounterReducer from \"./CounterSlice\";\r\n// import AppLayoutReducer from \"./features/common/AppLayoutSlice\";\r\n// import UserSessionReducer from \"./features/common/UserSessionSlice\";\r\n// import LoadingMaskReducer from \"./features/common/LoadingMaskSlice\";\r\n// import CommonStoreReducer from \"./features/business/CommonStoreSlice\";\r\n\r\nexport const store = configureStore({\r\n reducer: {\r\n // AppLayout: AppLayoutReducer,\r\n // UserSession: UserSessionReducer,\r\n // loadingMask: LoadingMaskReducer,\r\n // commonStores: CommonStoreReducer,\r\n counter: CounterReducer,\r\n },\r\n});\r\n\r\n// Infer the `RootState` and `AppDispatch` types from the store itself\r\nexport type RootState = ReturnType<typeof store.getState>;\r\nexport type AppDispatch = typeof store.dispatch;\r\n","import { useDispatch, useSelector } from \"react-redux\";\r\nimport { RootState } from \"../redux/store\";\r\nimport { Button } from \"@mui/material\";\r\nimport { CounterActions } from \"../redux/CounterSlice\";\r\n\r\nexport const Counter: React.FC = () => {\r\n const counter = useSelector((state: RootState) => state.counter.value);\r\n const dispatch = useDispatch();\r\n return (\r\n <>\r\n <div>Counter : {counter}</div>\r\n <Button\r\n variant=\"contained\"\r\n color=\"success\"\r\n onClick={() => {\r\n dispatch(CounterActions.increament());\r\n }}\r\n >\r\n increment\r\n </Button>\r\n <Button\r\n variant=\"contained\"\r\n color=\"error\"\r\n onClick={() => {\r\n dispatch(CounterActions.decreament());\r\n }}\r\n >\r\n decrement\r\n </Button>\r\n </>\r\n );\r\n};\r\n","import { Provider } from \"react-redux\";\r\nimport { store } from \"../redux/store\";\r\nimport { Counter } from \"./Counter\";\r\nimport { library } from \"@fortawesome/fontawesome-svg-core\";\r\nimport { fab } from \"@fortawesome/free-brands-svg-icons\";\r\nimport { far } from \"@fortawesome/free-regular-svg-icons\";\r\nimport { fas } from \"@fortawesome/free-solid-svg-icons\";\r\nimport { LicenseInfo } from \"@mui/x-license\";\r\n\r\nLicenseInfo.setLicenseKey(\r\n \"c2bd611fa642666253500ab9c8e4f78fTz0xMTE4MjEsRT0xNzc2OTg4Nzk5MDAwLFM9cHJlbWl1bSxMTT1zdWJzY3JpcHRpb24sUFY9aW5pdGlhbCxLVj0y\"\r\n);\r\nimport \"react-toastify/dist/ReactToastify.css\";\r\n\r\nlibrary.add(fab);\r\nlibrary.add(far);\r\nlibrary.add(fas);\r\n\r\nexport type BaseAppProps = {};\r\n\r\nexport const BaseApp: React.FC<BaseAppProps> = (props) => {\r\n return (\r\n <Provider store={store}>\r\n <div>Base App</div>\r\n <Counter />\r\n </Provider>\r\n );\r\n};\r\n"],"names":["CounterSlice","createSlice","name","initialState","value","reducers","increament","state","decreament","CounterActions","actions","CounterReducer","reducer","store","configureStore","counter","Counter","useSelector","dispatch","useDispatch","_jsxs","jsxs","_Fragment","Fragment","children","_jsx","Button","variant","color","onClick","jsx","LicenseInfo","setLicenseKey","library","add","fab","far","fas","props","Provider"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/redux/CounterSlice.ts","../src/redux/store.ts","../src/components/Counter.tsx","../src/components/BaseApp.tsx"],"sourcesContent":["import { createSlice } from \"@reduxjs/toolkit\";\r\n\r\nconst CounterSlice = createSlice({\r\n name: \"counter\",\r\n initialState: { value: 0 },\r\n reducers: {\r\n increament: (state) => {\r\n state.value = state.value + 1;\r\n },\r\n decreament: (state) => {\r\n state.value = state.value - 1;\r\n },\r\n },\r\n});\r\n\r\nexport const CounterActions = CounterSlice.actions;\r\nexport default CounterSlice.reducer;\r\n","import { configureStore } from \"@reduxjs/toolkit\";\r\nimport CounterReducer from \"./CounterSlice\";\r\n// import AppLayoutReducer from \"./features/common/AppLayoutSlice\";\r\n// import UserSessionReducer from \"./features/common/UserSessionSlice\";\r\n// import LoadingMaskReducer from \"./features/common/LoadingMaskSlice\";\r\n// import CommonStoreReducer from \"./features/business/CommonStoreSlice\";\r\n\r\nexport const store = configureStore({\r\n reducer: {\r\n // AppLayout: AppLayoutReducer,\r\n // UserSession: UserSessionReducer,\r\n // loadingMask: LoadingMaskReducer,\r\n // commonStores: CommonStoreReducer,\r\n counter: CounterReducer,\r\n },\r\n});\r\n\r\n// Infer the `RootState` and `AppDispatch` types from the store itself\r\nexport type RootState = ReturnType<typeof store.getState>;\r\nexport type AppDispatch = typeof store.dispatch;\r\n","import { useDispatch, useSelector } from \"react-redux\";\r\nimport { RootState } from \"../redux/store\";\r\nimport { Button } from \"@mui/material\";\r\nimport { CounterActions } from \"../redux/CounterSlice\";\r\n\r\nexport const Counter: React.FC = () => {\r\n const counter = useSelector((state: RootState) => state.counter.value);\r\n const dispatch = useDispatch();\r\n return (\r\n <>\r\n <div>Counter : {counter}</div>\r\n <Button\r\n variant=\"contained\"\r\n color=\"success\"\r\n onClick={() => {\r\n dispatch(CounterActions.increament());\r\n }}\r\n >\r\n increment\r\n </Button>\r\n <Button\r\n variant=\"contained\"\r\n color=\"error\"\r\n onClick={() => {\r\n dispatch(CounterActions.decreament());\r\n }}\r\n >\r\n decrement\r\n </Button>\r\n </>\r\n );\r\n};\r\n","import { Provider } from \"react-redux\";\r\nimport { store } from \"../redux/store\";\r\nimport { Counter } from \"./Counter\";\r\nimport { library } from \"@fortawesome/fontawesome-svg-core\";\r\nimport { fab } from \"@fortawesome/free-brands-svg-icons\";\r\nimport { far } from \"@fortawesome/free-regular-svg-icons\";\r\nimport { fas } from \"@fortawesome/free-solid-svg-icons\";\r\nimport { LicenseInfo } from \"@mui/x-license\";\r\n\r\nLicenseInfo.setLicenseKey(\r\n \"c2bd611fa642666253500ab9c8e4f78fTz0xMTE4MjEsRT0xNzc2OTg4Nzk5MDAwLFM9cHJlbWl1bSxMTT1zdWJzY3JpcHRpb24sUFY9aW5pdGlhbCxLVj0y\"\r\n);\r\nimport \"react-toastify/dist/ReactToastify.css\";\r\n\r\nlibrary.add(fab);\r\nlibrary.add(far);\r\nlibrary.add(fas);\r\n\r\nexport type BaseAppProps = {};\r\n\r\nexport const BaseApp: React.FC<BaseAppProps> = (props) => {\r\n return (\r\n <Provider store={store}>\r\n <div>Base App</div>\r\n <Counter />\r\n </Provider>\r\n );\r\n};\r\n"],"names":["CounterSlice","createSlice","name","initialState","value","reducers","increament","state","decreament","CounterActions","actions","CounterReducer","reducer","store","configureStore","counter","Counter","useSelector","dispatch","useDispatch","_jsxs","jsxs","_Fragment","Fragment","children","_jsx","Button","variant","color","onClick","jsx","LicenseInfo","setLicenseKey","library","add","fab","far","fas","props","Provider"],"mappings":"2eAEMA,EAAeC,EAAAA,YAAY,CAC/BC,KAAM,UACNC,aAAc,CAAEC,MAAO,GACvBC,SAAU,CACRC,WAAY,SAACC,GACXA,EAAMH,MAAQG,EAAMH,MAAQ,CAC7B,EACDI,WAAY,SAACD,GACXA,EAAMH,MAAQG,EAAMH,MAAQ,CAC7B,KAIQK,EAAiBT,EAAaU,QAC5BC,EAAAX,EAAaY,QCTfC,EAAQC,EAAAA,eAAe,CAClCF,QAAS,CAKPG,QAASJ,KCRAK,EAAoB,WAC/B,IAAMD,EAAUE,EAAWA,aAAC,SAACV,GAAqB,OAAAA,EAAMQ,QAAQX,SAC1Dc,EAAWC,EAAAA,cACjB,OACEC,EACEC,KAAAC,EAAAC,SAAA,CAAAC,SAAA,CAAAJ,EAAAA,KAAA,MAAA,CAAAI,SAAA,CAAA,aAAgBT,KAChBU,MAACC,EAAAA,OAAM,CACLC,QAAQ,YACRC,MAAM,UACNC,QAAS,WACPX,EAAST,EAAeH,aACzB,EAGMkB,SAAA,cACTC,EAACK,IAAAJ,EAAMA,QACLC,QAAQ,YACRC,MAAM,QACNC,QAAS,WACPX,EAAST,EAAeD,aACzB,EAAAgB,SAAA,gBAMT,ECtBAO,EAAAA,YAAYC,cACV,4HAIFC,EAAAA,QAAQC,IAAIC,EAAAA,KACZF,EAAAA,QAAQC,IAAIE,EAAAA,KACZH,EAAAA,QAAQC,IAAIG,EAAAA,qNAImC,SAACC,GAC9C,OACElB,EAAAA,KAACmB,EAAAA,SAAQ,CAAC1B,MAAOA,EACfW,SAAA,CAAAC,MAAA,MAAA,CAAAD,SAAA,aACAC,EAAAA,IAACT,EAAU,CAAA,KAGjB"}
|
package/dist/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{jsxs as e,Fragment as r,jsx as o}from"react/jsx-runtime";import{useSelector as t,useDispatch as n,Provider as i}from"react-redux";import{createSlice as
|
|
1
|
+
import{jsxs as e,Fragment as r,jsx as o}from"react/jsx-runtime";import{useSelector as t,useDispatch as n,Provider as i}from"react-redux";import{createSlice as a,configureStore as c}from"@reduxjs/toolkit";import{Button as m}from"@mui/material";export*from"@mui/material";import{library as s}from"@fortawesome/fontawesome-svg-core";import{fab as f}from"@fortawesome/free-brands-svg-icons";import{far as d}from"@fortawesome/free-regular-svg-icons";import{fas as u}from"@fortawesome/free-solid-svg-icons";import{LicenseInfo as l}from"@mui/x-license";import"react-toastify/dist/ReactToastify.css";export*from"zod";export{toast}from"react-toastify";export{FontAwesomeIcon}from"@fortawesome/react-fontawesome";var p=a({name:"counter",initialState:{value:0},reducers:{increament:function(e){e.value=e.value+1},decreament:function(e){e.value=e.value-1}}}),v=p.actions,x=c({reducer:{counter:p.reducer}}),w=function(){var i=t((function(e){return e.counter.value})),a=n();return e(r,{children:[e("div",{children:["Counter : ",i]}),o(m,{variant:"contained",color:"success",onClick:function(){a(v.increament())},children:"increment"}),o(m,{variant:"contained",color:"error",onClick:function(){a(v.decreament())},children:"decrement"})]})};l.setLicenseKey("c2bd611fa642666253500ab9c8e4f78fTz0xMTE4MjEsRT0xNzc2OTg4Nzk5MDAwLFM9cHJlbWl1bSxMTT1zdWJzY3JpcHRpb24sUFY9aW5pdGlhbCxLVj0y"),s.add(f),s.add(d),s.add(u);var b=function(r){return e(i,{store:x,children:[o("div",{children:"Base App"}),o(w,{})]})};export{b as BaseApp};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../src/redux/CounterSlice.ts","../src/redux/store.ts","../src/components/Counter.tsx","../src/components/BaseApp.tsx"],"sourcesContent":["import { createSlice } from \"@reduxjs/toolkit\";\r\n\r\nconst CounterSlice = createSlice({\r\n name: \"counter\",\r\n initialState: { value: 0 },\r\n reducers: {\r\n increament: (state) => {\r\n state.value = state.value + 1;\r\n },\r\n decreament: (state) => {\r\n state.value = state.value - 1;\r\n },\r\n },\r\n});\r\n\r\nexport const CounterActions = CounterSlice.actions;\r\nexport default CounterSlice.reducer;\r\n","import { configureStore } from \"@reduxjs/toolkit\";\r\nimport CounterReducer from \"./CounterSlice\";\r\n// import AppLayoutReducer from \"./features/common/AppLayoutSlice\";\r\n// import UserSessionReducer from \"./features/common/UserSessionSlice\";\r\n// import LoadingMaskReducer from \"./features/common/LoadingMaskSlice\";\r\n// import CommonStoreReducer from \"./features/business/CommonStoreSlice\";\r\n\r\nexport const store = configureStore({\r\n reducer: {\r\n // AppLayout: AppLayoutReducer,\r\n // UserSession: UserSessionReducer,\r\n // loadingMask: LoadingMaskReducer,\r\n // commonStores: CommonStoreReducer,\r\n counter: CounterReducer,\r\n },\r\n});\r\n\r\n// Infer the `RootState` and `AppDispatch` types from the store itself\r\nexport type RootState = ReturnType<typeof store.getState>;\r\nexport type AppDispatch = typeof store.dispatch;\r\n","import { useDispatch, useSelector } from \"react-redux\";\r\nimport { RootState } from \"../redux/store\";\r\nimport { Button } from \"@mui/material\";\r\nimport { CounterActions } from \"../redux/CounterSlice\";\r\n\r\nexport const Counter: React.FC = () => {\r\n const counter = useSelector((state: RootState) => state.counter.value);\r\n const dispatch = useDispatch();\r\n return (\r\n <>\r\n <div>Counter : {counter}</div>\r\n <Button\r\n variant=\"contained\"\r\n color=\"success\"\r\n onClick={() => {\r\n dispatch(CounterActions.increament());\r\n }}\r\n >\r\n increment\r\n </Button>\r\n <Button\r\n variant=\"contained\"\r\n color=\"error\"\r\n onClick={() => {\r\n dispatch(CounterActions.decreament());\r\n }}\r\n >\r\n decrement\r\n </Button>\r\n </>\r\n );\r\n};\r\n","import { Provider } from \"react-redux\";\r\nimport { store } from \"../redux/store\";\r\nimport { Counter } from \"./Counter\";\r\nimport { library } from \"@fortawesome/fontawesome-svg-core\";\r\nimport { fab } from \"@fortawesome/free-brands-svg-icons\";\r\nimport { far } from \"@fortawesome/free-regular-svg-icons\";\r\nimport { fas } from \"@fortawesome/free-solid-svg-icons\";\r\nimport { LicenseInfo } from \"@mui/x-license\";\r\n\r\nLicenseInfo.setLicenseKey(\r\n \"c2bd611fa642666253500ab9c8e4f78fTz0xMTE4MjEsRT0xNzc2OTg4Nzk5MDAwLFM9cHJlbWl1bSxMTT1zdWJzY3JpcHRpb24sUFY9aW5pdGlhbCxLVj0y\"\r\n);\r\nimport \"react-toastify/dist/ReactToastify.css\";\r\n\r\nlibrary.add(fab);\r\nlibrary.add(far);\r\nlibrary.add(fas);\r\n\r\nexport type BaseAppProps = {};\r\n\r\nexport const BaseApp: React.FC<BaseAppProps> = (props) => {\r\n return (\r\n <Provider store={store}>\r\n <div>Base App</div>\r\n <Counter />\r\n </Provider>\r\n );\r\n};\r\n"],"names":["CounterSlice","createSlice","name","initialState","value","reducers","increament","state","decreament","CounterActions","actions","store","configureStore","reducer","counter","Counter","useSelector","dispatch","useDispatch","_jsxs","_Fragment","children","_jsx","Button","variant","color","onClick","LicenseInfo","setLicenseKey","library","add","fab","far","fas","BaseApp","props","Provider"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../src/redux/CounterSlice.ts","../src/redux/store.ts","../src/components/Counter.tsx","../src/components/BaseApp.tsx"],"sourcesContent":["import { createSlice } from \"@reduxjs/toolkit\";\r\n\r\nconst CounterSlice = createSlice({\r\n name: \"counter\",\r\n initialState: { value: 0 },\r\n reducers: {\r\n increament: (state) => {\r\n state.value = state.value + 1;\r\n },\r\n decreament: (state) => {\r\n state.value = state.value - 1;\r\n },\r\n },\r\n});\r\n\r\nexport const CounterActions = CounterSlice.actions;\r\nexport default CounterSlice.reducer;\r\n","import { configureStore } from \"@reduxjs/toolkit\";\r\nimport CounterReducer from \"./CounterSlice\";\r\n// import AppLayoutReducer from \"./features/common/AppLayoutSlice\";\r\n// import UserSessionReducer from \"./features/common/UserSessionSlice\";\r\n// import LoadingMaskReducer from \"./features/common/LoadingMaskSlice\";\r\n// import CommonStoreReducer from \"./features/business/CommonStoreSlice\";\r\n\r\nexport const store = configureStore({\r\n reducer: {\r\n // AppLayout: AppLayoutReducer,\r\n // UserSession: UserSessionReducer,\r\n // loadingMask: LoadingMaskReducer,\r\n // commonStores: CommonStoreReducer,\r\n counter: CounterReducer,\r\n },\r\n});\r\n\r\n// Infer the `RootState` and `AppDispatch` types from the store itself\r\nexport type RootState = ReturnType<typeof store.getState>;\r\nexport type AppDispatch = typeof store.dispatch;\r\n","import { useDispatch, useSelector } from \"react-redux\";\r\nimport { RootState } from \"../redux/store\";\r\nimport { Button } from \"@mui/material\";\r\nimport { CounterActions } from \"../redux/CounterSlice\";\r\n\r\nexport const Counter: React.FC = () => {\r\n const counter = useSelector((state: RootState) => state.counter.value);\r\n const dispatch = useDispatch();\r\n return (\r\n <>\r\n <div>Counter : {counter}</div>\r\n <Button\r\n variant=\"contained\"\r\n color=\"success\"\r\n onClick={() => {\r\n dispatch(CounterActions.increament());\r\n }}\r\n >\r\n increment\r\n </Button>\r\n <Button\r\n variant=\"contained\"\r\n color=\"error\"\r\n onClick={() => {\r\n dispatch(CounterActions.decreament());\r\n }}\r\n >\r\n decrement\r\n </Button>\r\n </>\r\n );\r\n};\r\n","import { Provider } from \"react-redux\";\r\nimport { store } from \"../redux/store\";\r\nimport { Counter } from \"./Counter\";\r\nimport { library } from \"@fortawesome/fontawesome-svg-core\";\r\nimport { fab } from \"@fortawesome/free-brands-svg-icons\";\r\nimport { far } from \"@fortawesome/free-regular-svg-icons\";\r\nimport { fas } from \"@fortawesome/free-solid-svg-icons\";\r\nimport { LicenseInfo } from \"@mui/x-license\";\r\n\r\nLicenseInfo.setLicenseKey(\r\n \"c2bd611fa642666253500ab9c8e4f78fTz0xMTE4MjEsRT0xNzc2OTg4Nzk5MDAwLFM9cHJlbWl1bSxMTT1zdWJzY3JpcHRpb24sUFY9aW5pdGlhbCxLVj0y\"\r\n);\r\nimport \"react-toastify/dist/ReactToastify.css\";\r\n\r\nlibrary.add(fab);\r\nlibrary.add(far);\r\nlibrary.add(fas);\r\n\r\nexport type BaseAppProps = {};\r\n\r\nexport const BaseApp: React.FC<BaseAppProps> = (props) => {\r\n return (\r\n <Provider store={store}>\r\n <div>Base App</div>\r\n <Counter />\r\n </Provider>\r\n );\r\n};\r\n"],"names":["CounterSlice","createSlice","name","initialState","value","reducers","increament","state","decreament","CounterActions","actions","store","configureStore","reducer","counter","Counter","useSelector","dispatch","useDispatch","_jsxs","_Fragment","children","_jsx","Button","variant","color","onClick","LicenseInfo","setLicenseKey","library","add","fab","far","fas","BaseApp","props","Provider"],"mappings":"+rBAEA,IAAMA,EAAeC,EAAY,CAC/BC,KAAM,UACNC,aAAc,CAAEC,MAAO,GACvBC,SAAU,CACRC,WAAY,SAACC,GACXA,EAAMH,MAAQG,EAAMH,MAAQ,CAC7B,EACDI,WAAY,SAACD,GACXA,EAAMH,MAAQG,EAAMH,MAAQ,CAC7B,KAIQK,EAAiBT,EAAaU,QCR9BC,EAAQC,EAAe,CAClCC,QAAS,CAKPC,QDGWd,EAAaa,WEXfE,EAAoB,WAC/B,IAAMD,EAAUE,GAAY,SAACT,GAAqB,OAAAA,EAAMO,QAAQV,SAC1Da,EAAWC,IACjB,OACEC,EACEC,EAAA,CAAAC,SAAA,CAAAF,EAAA,MAAA,CAAAE,SAAA,CAAA,aAAgBP,KAChBQ,EAACC,EAAM,CACLC,QAAQ,YACRC,MAAM,UACNC,QAAS,WACPT,EAASR,EAAeH,aACzB,EAGMe,SAAA,cACTC,EAACC,GACCC,QAAQ,YACRC,MAAM,QACNC,QAAS,WACPT,EAASR,EAAeD,aACzB,EAAAa,SAAA,gBAMT,ECtBAM,EAAYC,cACV,4HAIFC,EAAQC,IAAIC,GACZF,EAAQC,IAAIE,GACZH,EAAQC,IAAIG,GAIL,IAAMC,EAAkC,SAACC,GAC9C,OACEhB,EAACiB,EAAQ,CAACzB,MAAOA,EACfU,SAAA,CAAAC,EAAA,MAAA,CAAAD,SAAA,aACAC,EAACP,EAAU,CAAA,KAGjB"}
|
package/package.json
CHANGED
package/src/components/index.ts
CHANGED