diff --git a/packages/nc-gui-v2/.eslintrc.js b/packages/nc-gui-v2/.eslintrc.js new file mode 100644 index 0000000000..ffce177519 --- /dev/null +++ b/packages/nc-gui-v2/.eslintrc.js @@ -0,0 +1,12 @@ +const baseRules = { + 'vue/no-setup-props-destructure': 0, + 'no-console': 0, + 'antfu/if-newline': 0, + 'prettier/prettier': ['error', {}, { usePrettierrc: true }], +} + +module.exports = { + extends: ['@antfu', 'plugin:prettier/recommended'], + plugins: ['prettier'], + rules: baseRules, +} diff --git a/packages/nc-gui-v2/.prettierrc b/packages/nc-gui-v2/.prettierrc new file mode 100644 index 0000000000..02018a3756 --- /dev/null +++ b/packages/nc-gui-v2/.prettierrc @@ -0,0 +1,8 @@ +{ + "singleQuote": true, + "trailingComma": "all", + "semi": false, + "quoteProps": "consistent", + "bracketSpacing": true, + "printWidth": 130 +} diff --git a/packages/nc-gui-v2/app.vue b/packages/nc-gui-v2/app.vue index 2f15e4a369..e8aca25950 100644 --- a/packages/nc-gui-v2/app.vue +++ b/packages/nc-gui-v2/app.vue @@ -1,6 +1,103 @@ + + diff --git a/packages/nc-gui-v2/assets/README.md b/packages/nc-gui-v2/assets/README.md new file mode 100644 index 0000000000..c67cf2e260 --- /dev/null +++ b/packages/nc-gui-v2/assets/README.md @@ -0,0 +1,8 @@ +# ASSETS + +This directory contains your un-compiled assets such as LESS, SASS, or JavaScript. + +More information about the usage of this directory in the documentation: +https://nuxtjs.org/guide/assets#webpacked + +**This directory is not required, you can delete it if you don't want to use it.** diff --git a/packages/nc-gui-v2/assets/css/color.css b/packages/nc-gui-v2/assets/css/color.css new file mode 100644 index 0000000000..4788c60656 --- /dev/null +++ b/packages/nc-gui-v2/assets/css/color.css @@ -0,0 +1,4 @@ +:root { + --primary: #00b786; + --secondary: #8ceaf6; +} diff --git a/packages/nc-gui-v2/assets/css/global.css b/packages/nc-gui-v2/assets/css/global.css new file mode 100644 index 0000000000..fe1fd47c04 --- /dev/null +++ b/packages/nc-gui-v2/assets/css/global.css @@ -0,0 +1,46 @@ +@import './color.css'; +html { + font-size: 16px; + word-spacing: 1px; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + box-sizing: border-box; +} +body { + font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, Vazirmatn, sans-serif; +} +*, *:before, *:after { + box-sizing: border-box; + margin: 0; +} +.btn, .pointer { + cursor: pointer; +} +.primary { + color: var(--primary); +} +.secondary { + color: var(--secondary); +} +.btn-primary { + background-color: var(--primary); + color: #fff; +} +.btn-secondary { + background-color: var(--secondary); + color: #000; +} + +/* +Apply Vazirmatn for rtl +*/ + +.rtl .v-application *:not(.material-icons) { + font-family: Vazirmatn !important; +} + +.rtl .v-application .ml-n1 { + margin-left: 0px !important; +} \ No newline at end of file diff --git a/packages/nc-gui-v2/assets/img/brand/Transparent.png b/packages/nc-gui-v2/assets/img/brand/Transparent.png new file mode 100644 index 0000000000..d7a68ffa31 Binary files /dev/null and b/packages/nc-gui-v2/assets/img/brand/Transparent.png differ diff --git a/packages/nc-gui-v2/assets/img/brand/favicon-128.png b/packages/nc-gui-v2/assets/img/brand/favicon-128.png new file mode 100644 index 0000000000..ecc0ed692f Binary files /dev/null and b/packages/nc-gui-v2/assets/img/brand/favicon-128.png differ diff --git a/packages/nc-gui-v2/assets/img/brand/favicon-16.png b/packages/nc-gui-v2/assets/img/brand/favicon-16.png new file mode 100644 index 0000000000..ebaa144cc7 Binary files /dev/null and b/packages/nc-gui-v2/assets/img/brand/favicon-16.png differ diff --git a/packages/nc-gui-v2/assets/img/brand/favicon-32.png b/packages/nc-gui-v2/assets/img/brand/favicon-32.png new file mode 100644 index 0000000000..1c835348ea Binary files /dev/null and b/packages/nc-gui-v2/assets/img/brand/favicon-32.png differ diff --git a/packages/nc-gui-v2/assets/img/brand/favicon-64.png b/packages/nc-gui-v2/assets/img/brand/favicon-64.png new file mode 100644 index 0000000000..286a79d9d8 Binary files /dev/null and b/packages/nc-gui-v2/assets/img/brand/favicon-64.png differ diff --git a/packages/nc-gui-v2/assets/img/github.png b/packages/nc-gui-v2/assets/img/github.png new file mode 100644 index 0000000000..86e3365297 Binary files /dev/null and b/packages/nc-gui-v2/assets/img/github.png differ diff --git a/packages/nc-gui-v2/assets/img/gmail.png b/packages/nc-gui-v2/assets/img/gmail.png new file mode 100644 index 0000000000..7c7c53fa0e Binary files /dev/null and b/packages/nc-gui-v2/assets/img/gmail.png differ diff --git a/packages/nc-gui-v2/assets/img/icon.png b/packages/nc-gui-v2/assets/img/icon.png new file mode 100644 index 0000000000..d7a68ffa31 Binary files /dev/null and b/packages/nc-gui-v2/assets/img/icon.png differ diff --git a/packages/nc-gui-v2/assets/img/icons/256.png b/packages/nc-gui-v2/assets/img/icons/256.png new file mode 100644 index 0000000000..ba362f49b5 Binary files /dev/null and b/packages/nc-gui-v2/assets/img/icons/256.png differ diff --git a/packages/nc-gui-v2/assets/img/icons/512x512-trans.png b/packages/nc-gui-v2/assets/img/icons/512x512-trans.png new file mode 100644 index 0000000000..c29553653d Binary files /dev/null and b/packages/nc-gui-v2/assets/img/icons/512x512-trans.png differ diff --git a/packages/nc-gui-v2/assets/img/icons/512x512.png b/packages/nc-gui-v2/assets/img/icons/512x512.png new file mode 100644 index 0000000000..3ea62a1431 Binary files /dev/null and b/packages/nc-gui-v2/assets/img/icons/512x512.png differ diff --git a/packages/nc-gui-v2/assets/style-v2.scss b/packages/nc-gui-v2/assets/style-v2.scss new file mode 100644 index 0000000000..21336be98a --- /dev/null +++ b/packages/nc-gui-v2/assets/style-v2.scss @@ -0,0 +1,66 @@ +html, +body, +#__nuxt, +.ant-layout, +main { + @apply m-0 h-full w-full bg-white dark:(bg-black text-white); +} + +main { + @apply flex-0 w-full relative scrollbar-thin-primary; + overflow-x: hidden; +} + +nav, +nav .v-list { + @apply dark:(!bg-gray-900 text-white) +} + +.v-divider { + @apply dark:bg-white +} + +.page-enter-active, +.page-leave-active, +.layout-enter-active, +.layout-leave-active { + @apply transition-opacity duration-300 ease-in-out; +} + +.page-enter, +.page-leave-active, +.layout-enter, +.layout-leave-active { + @apply opacity-0; +} + +.slide-enter-active, +.slide-leave-active { + @apply transition-all duration-200 ease-in-out; + transform: translate(100%, 0); +} + +.slide-enter, +.slide-leave-active { + transform: translate(-100%, 0); +} + +a { + @apply prose text-primary underline hover:opacity-75 dark:(text-secondary) hover:(opacity-75); +} + +h1, h2, h3, h4, h5, h6, p, label, button, textarea, select { + @apply dark:(!text-white); +} + +.nc-icon { + @apply color-transition; +} + +:root { + --header-height: 64px; +} + +html { + overflow-y: auto !important; +} diff --git a/packages/nc-gui-v2/assets/style.css b/packages/nc-gui-v2/assets/style.css new file mode 100644 index 0000000000..5feb4e1631 --- /dev/null +++ b/packages/nc-gui-v2/assets/style.css @@ -0,0 +1,19 @@ +::-webkit-scrollbar { + width: .7em; + height: .7em +} + +::-webkit-scrollbar-button { + background: #77777722 +} + +::-webkit-scrollbar-track-piece { + background: #66666622 +} + +::-webkit-scrollbar-thumb { + background: #888; + border-radius: .7em; + border: .15em solid #00000000; + background-clip: padding-box; +} diff --git a/packages/nc-gui-v2/assets/style/fonts.css b/packages/nc-gui-v2/assets/style/fonts.css new file mode 100644 index 0000000000..95d79cac52 --- /dev/null +++ b/packages/nc-gui-v2/assets/style/fonts.css @@ -0,0 +1,230 @@ +/* roboto-100 - vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 100; + src: url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.eot'); /* IE9 Compat Modes */ + src: local(''), + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.woff2') format('woff2'), /* Super Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.woff') format('woff'), /* Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.ttf') format('truetype'), /* Safari, Android, iOS */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.svg#Roboto') format('svg'); /* Legacy iOS */ +} +/* roboto-100italic - vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: italic; + font-weight: 100; + src: url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.eot'); /* IE9 Compat Modes */ + src: local(''), + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.woff2') format('woff2'), /* Super Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.woff') format('woff'), /* Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.ttf') format('truetype'), /* Safari, Android, iOS */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.svg#Roboto') format('svg'); /* Legacy iOS */ +} +/* roboto-300italic - vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: italic; + font-weight: 300; + src: url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.eot'); /* IE9 Compat Modes */ + src: local(''), + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff2') format('woff2'), /* Super Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff') format('woff'), /* Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.ttf') format('truetype'), /* Safari, Android, iOS */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.svg#Roboto') format('svg'); /* Legacy iOS */ +} +/* roboto-300 - vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 300; + src: url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.eot'); /* IE9 Compat Modes */ + src: local(''), + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff2') format('woff2'), /* Super Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff') format('woff'), /* Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.ttf') format('truetype'), /* Safari, Android, iOS */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.svg#Roboto') format('svg'); /* Legacy iOS */ +} +/* roboto-regular - vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 400; + src: url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot'); /* IE9 Compat Modes */ + src: local(''), + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2') format('woff2'), /* Super Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff') format('woff'), /* Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.ttf') format('truetype'), /* Safari, Android, iOS */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.svg#Roboto') format('svg'); /* Legacy iOS */ +} +/* roboto-italic - vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: italic; + font-weight: 400; + src: url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.eot'); /* IE9 Compat Modes */ + src: local(''), + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff2') format('woff2'), /* Super Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff') format('woff'), /* Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.ttf') format('truetype'), /* Safari, Android, iOS */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.svg#Roboto') format('svg'); /* Legacy iOS */ +} +/* roboto-500 - vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 500; + src: url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.eot'); /* IE9 Compat Modes */ + src: local(''), + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff2') format('woff2'), /* Super Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff') format('woff'), /* Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.ttf') format('truetype'), /* Safari, Android, iOS */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.svg#Roboto') format('svg'); /* Legacy iOS */ +} +/* roboto-500italic - vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: italic; + font-weight: 500; + src: url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.eot'); /* IE9 Compat Modes */ + src: local(''), + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff2') format('woff2'), /* Super Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff') format('woff'), /* Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.ttf') format('truetype'), /* Safari, Android, iOS */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.svg#Roboto') format('svg'); /* Legacy iOS */ +} +/* roboto-700 - vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 700; + src: url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.eot'); /* IE9 Compat Modes */ + src: local(''), + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2') format('woff2'), /* Super Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff') format('woff'), /* Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.ttf') format('truetype'), /* Safari, Android, iOS */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.svg#Roboto') format('svg'); /* Legacy iOS */ +} +/* roboto-700italic - vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: italic; + font-weight: 700; + src: url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.eot'); /* IE9 Compat Modes */ + src: local(''), + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff2') format('woff2'), /* Super Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff') format('woff'), /* Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.ttf') format('truetype'), /* Safari, Android, iOS */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.svg#Roboto') format('svg'); /* Legacy iOS */ +} +/* roboto-900 - vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: normal; + font-weight: 900; + src: url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.eot'); /* IE9 Compat Modes */ + src: local(''), + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.woff2') format('woff2'), /* Super Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.woff') format('woff'), /* Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.ttf') format('truetype'), /* Safari, Android, iOS */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.svg#Roboto') format('svg'); /* Legacy iOS */ +} +/* roboto-900italic - vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic */ +@font-face { + font-family: 'Roboto'; + font-style: italic; + font-weight: 900; + src: url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.eot'); /* IE9 Compat Modes */ + src: local(''), + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.woff2') format('woff2'), /* Super Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.woff') format('woff'), /* Modern Browsers */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.ttf') format('truetype'), /* Safari, Android, iOS */ + url('./roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.svg#Roboto') format('svg'); /* Legacy iOS */ +} + +/* Vazirmatn */ +/* https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v32.102/Vazirmatn-font-face.css */ +@font-face { + font-family: Vazirmatn; + src: url('./vazirmatn/Vazirmatn-Thin.woff2') format('woff2'); + font-weight: 100; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: Vazirmatn; + src: url('./vazirmatn/Vazirmatn-ExtraLight.woff2') format('woff2'); + font-weight: 200; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: Vazirmatn; + src: url('./vazirmatn/Vazirmatn-Light.woff2') format('woff2'); + font-weight: 300; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: Vazirmatn; + src: url('./vazirmatn/Vazirmatn-Regular.woff2') format('woff2'); + font-weight: 400; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: Vazirmatn; + src: url('./vazirmatn/Vazirmatn-Medium.woff2') format('woff2'); + font-weight: 500; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: Vazirmatn; + src: url('./vazirmatn/Vazirmatn-SemiBold.woff2') format('woff2'); + font-weight: 600; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: Vazirmatn; + src: url('./vazirmatn/Vazirmatn-Bold.woff2') format('woff2'); + font-weight: 700; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: Vazirmatn; + src: url('./vazirmatn/Vazirmatn-ExtraBold.woff2') format('woff2'); + font-weight: 800; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: Vazirmatn; + src: url('./vazirmatn/Vazirmatn-Black.woff2') format('woff2'); + font-weight: 900; + font-style: normal; + font-display: swap; +} \ No newline at end of file diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.eot b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.eot new file mode 100644 index 0000000000..26e551ca48 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.eot differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.svg b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.svg new file mode 100644 index 0000000000..e8c8fc835f --- /dev/null +++ b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.svg @@ -0,0 +1,313 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.ttf b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.ttf new file mode 100644 index 0000000000..911afb132d Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.ttf differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.woff b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.woff new file mode 100644 index 0000000000..87ed720590 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.woff differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.woff2 b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.woff2 new file mode 100644 index 0000000000..4c857f0256 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.eot b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.eot new file mode 100644 index 0000000000..51235721f4 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.eot differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.svg b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.svg new file mode 100644 index 0000000000..c51ce871be --- /dev/null +++ b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.svg @@ -0,0 +1,332 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.ttf b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.ttf new file mode 100644 index 0000000000..6ab4ed08e2 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.ttf differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.woff b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.woff new file mode 100644 index 0000000000..a5ead183f1 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.woff differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.woff2 b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.woff2 new file mode 100644 index 0000000000..8157d16671 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-100italic.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.eot b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.eot new file mode 100644 index 0000000000..ad4d0c4af8 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.eot differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.svg b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.svg new file mode 100644 index 0000000000..4ded944a8b --- /dev/null +++ b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.svg @@ -0,0 +1,312 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.ttf b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.ttf new file mode 100644 index 0000000000..ec821b577d Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.ttf differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff new file mode 100644 index 0000000000..54d5d781c9 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff2 b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff2 new file mode 100644 index 0000000000..ccadbb0b76 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.eot b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.eot new file mode 100644 index 0000000000..eefd1c436f Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.eot differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.svg b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.svg new file mode 100644 index 0000000000..758402b65f --- /dev/null +++ b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.svg @@ -0,0 +1,329 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.ttf b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.ttf new file mode 100644 index 0000000000..f33754869d Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.ttf differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff new file mode 100644 index 0000000000..51bd3e1573 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff2 b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff2 new file mode 100644 index 0000000000..6fb031b64c Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-300italic.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.eot b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.eot new file mode 100644 index 0000000000..15f16a0e5f Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.eot differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.svg b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.svg new file mode 100644 index 0000000000..67eecf442f --- /dev/null +++ b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.svg @@ -0,0 +1,305 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.ttf b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.ttf new file mode 100644 index 0000000000..4b4e1c6569 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.ttf differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff new file mode 100644 index 0000000000..5860991f10 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff2 b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff2 new file mode 100644 index 0000000000..190d60a7f9 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.eot b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.eot new file mode 100644 index 0000000000..c3bf9dee69 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.eot differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.svg b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.svg new file mode 100644 index 0000000000..bed50dcf2e --- /dev/null +++ b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.svg @@ -0,0 +1,326 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.ttf b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.ttf new file mode 100644 index 0000000000..591e20ed8a Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.ttf differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff new file mode 100644 index 0000000000..91e2f96261 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff2 b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff2 new file mode 100644 index 0000000000..669efa60c3 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-500italic.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.eot b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.eot new file mode 100644 index 0000000000..eb5be37ed1 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.eot differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.svg b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.svg new file mode 100644 index 0000000000..11db87dd0e --- /dev/null +++ b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.svg @@ -0,0 +1,309 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.ttf b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.ttf new file mode 100644 index 0000000000..58d877c581 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.ttf differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff new file mode 100644 index 0000000000..60b74008c4 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2 b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2 new file mode 100644 index 0000000000..31abf9f17d Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.eot b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.eot new file mode 100644 index 0000000000..4d6b59ec23 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.eot differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.svg b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.svg new file mode 100644 index 0000000000..050bee0e4a --- /dev/null +++ b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.svg @@ -0,0 +1,325 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.ttf b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.ttf new file mode 100644 index 0000000000..f3515ddf53 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.ttf differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff new file mode 100644 index 0000000000..afecf26dde Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff2 b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff2 new file mode 100644 index 0000000000..385aa01d2c Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-700italic.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.eot b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.eot new file mode 100644 index 0000000000..696ef18ff6 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.eot differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.svg b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.svg new file mode 100644 index 0000000000..9efdf4e953 --- /dev/null +++ b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.svg @@ -0,0 +1,302 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.ttf b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.ttf new file mode 100644 index 0000000000..00c059b581 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.ttf differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.woff b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.woff new file mode 100644 index 0000000000..38fa0d9bbc Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.woff differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.woff2 b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.woff2 new file mode 100644 index 0000000000..1cf7721b75 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.eot b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.eot new file mode 100644 index 0000000000..b51d872375 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.eot differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.svg b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.svg new file mode 100644 index 0000000000..f8f5ab39e3 --- /dev/null +++ b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.svg @@ -0,0 +1,324 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.ttf b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.ttf new file mode 100644 index 0000000000..93793af114 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.ttf differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.woff b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.woff new file mode 100644 index 0000000000..bd54134953 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.woff differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.woff2 b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.woff2 new file mode 100644 index 0000000000..904aed217f Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-900italic.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.eot b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.eot new file mode 100644 index 0000000000..cd3773c7ef Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.eot differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.svg b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.svg new file mode 100644 index 0000000000..4d59797103 --- /dev/null +++ b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.svg @@ -0,0 +1,323 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.ttf b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.ttf new file mode 100644 index 0000000000..1e746d17f4 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.ttf differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff new file mode 100644 index 0000000000..fd90554e12 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff2 b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff2 new file mode 100644 index 0000000000..d49ce7bf06 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-italic.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot new file mode 100644 index 0000000000..01f6172ddf Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.eot differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.svg b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.svg new file mode 100644 index 0000000000..627f5a368c --- /dev/null +++ b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.svg @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.ttf b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.ttf new file mode 100644 index 0000000000..9d4b32b479 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.ttf differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff new file mode 100644 index 0000000000..d491906a40 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff differ diff --git a/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2 b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2 new file mode 100644 index 0000000000..55affe52e5 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/roboto/roboto-v27-vietnamese_latin-ext_latin_greek-ext_greek_cyrillic-ext_cyrillic-regular.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Black.woff2 b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Black.woff2 new file mode 100644 index 0000000000..a9ea349be2 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Black.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Bold.woff2 b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Bold.woff2 new file mode 100644 index 0000000000..f11fb464f6 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Bold.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-ExtraBold.woff2 b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-ExtraBold.woff2 new file mode 100644 index 0000000000..0c3f2a28b9 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-ExtraBold.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-ExtraLight.woff2 b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-ExtraLight.woff2 new file mode 100644 index 0000000000..c109020679 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-ExtraLight.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Light.woff2 b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Light.woff2 new file mode 100644 index 0000000000..328ad95fef Binary files /dev/null and b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Light.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Medium.woff2 b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Medium.woff2 new file mode 100644 index 0000000000..7fd11e8605 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Medium.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Regular.woff2 b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Regular.woff2 new file mode 100644 index 0000000000..5923264adf Binary files /dev/null and b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Regular.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-SemiBold.woff2 b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-SemiBold.woff2 new file mode 100644 index 0000000000..05e45ba7e3 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-SemiBold.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Thin.woff2 b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Thin.woff2 new file mode 100644 index 0000000000..4c5870dbf3 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn-Thin.woff2 differ diff --git a/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn[wght].woff2 b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn[wght].woff2 new file mode 100644 index 0000000000..15cbc63817 Binary files /dev/null and b/packages/nc-gui-v2/assets/style/vazirmatn/Vazirmatn[wght].woff2 differ diff --git a/packages/nc-gui-v2/components.d.ts b/packages/nc-gui-v2/components.d.ts new file mode 100644 index 0000000000..598349f0f6 --- /dev/null +++ b/packages/nc-gui-v2/components.d.ts @@ -0,0 +1,53 @@ +// generated by unplugin-vue-components +// We suggest you to commit this file into source control +// Read more: https://github.com/vuejs/core/pull/3399 +import '@vue/runtime-core' + +export {} + +declare module '@vue/runtime-core' { + export interface GlobalComponents { + AAutoComplete: typeof import('ant-design-vue/es')['AutoComplete'] + AButton: typeof import('ant-design-vue/es')['Button'] + ACard: typeof import('ant-design-vue/es')['Card'] + ACheckbox: typeof import('ant-design-vue/es')['Checkbox'] + ACol: typeof import('ant-design-vue/es')['Col'] + ACollapse: typeof import('ant-design-vue/es')['Collapse'] + ACollapsePanel: typeof import('ant-design-vue/es')['CollapsePanel'] + ADivider: typeof import('ant-design-vue/es')['Divider'] + ADropdown: typeof import('ant-design-vue/es')['Dropdown'] + AForm: typeof import('ant-design-vue/es')['Form'] + AFormItem: typeof import('ant-design-vue/es')['FormItem'] + AInput: typeof import('ant-design-vue/es')['Input'] + AInputNumber: typeof import('ant-design-vue/es')['InputNumber'] + AInputPassword: typeof import('ant-design-vue/es')['InputPassword'] + AInputSearch: typeof import('ant-design-vue/es')['InputSearch'] + ALayout: typeof import('ant-design-vue/es')['Layout'] + ALayoutContent: typeof import('ant-design-vue/es')['LayoutContent'] + ALayoutHeader: typeof import('ant-design-vue/es')['LayoutHeader'] + ALayoutSider: typeof import('ant-design-vue/es')['LayoutSider'] + AMenu: typeof import('ant-design-vue/es')['Menu'] + AMenuDivider: typeof import('ant-design-vue/es')['MenuDivider'] + AMenuItem: typeof import('ant-design-vue/es')['MenuItem'] + AMenuItemGroup: typeof import('ant-design-vue/es')['MenuItemGroup'] + AModal: typeof import('ant-design-vue/es')['Modal'] + APagination: typeof import('ant-design-vue/es')['Pagination'] + ARow: typeof import('ant-design-vue/es')['Row'] + ASelect: typeof import('ant-design-vue/es')['Select'] + ASelectOption: typeof import('ant-design-vue/es')['SelectOption'] + ASkeleton: typeof import('ant-design-vue/es')['Skeleton'] + ASpace: typeof import('ant-design-vue/es')['Space'] + ASpin: typeof import('ant-design-vue/es')['Spin'] + ASubMenu: typeof import('ant-design-vue/es')['SubMenu'] + ATable: typeof import('ant-design-vue/es')['Table'] + ATableColumn: typeof import('ant-design-vue/es')['TableColumn'] + ATableColumnGroup: typeof import('ant-design-vue/es')['TableColumnGroup'] + ATabPane: typeof import('ant-design-vue/es')['TabPane'] + ATabs: typeof import('ant-design-vue/es')['Tabs'] + ATag: typeof import('ant-design-vue/es')['Tag'] + ATooltip: typeof import('ant-design-vue/es')['Tooltip'] + AUploadDragger: typeof import('ant-design-vue/es')['UploadDragger'] + RouterLink: typeof import('vue-router')['RouterLink'] + RouterView: typeof import('vue-router')['RouterView'] + } +} diff --git a/packages/nc-gui-v2/components/cell/Attachment.vue b/packages/nc-gui-v2/components/cell/Attachment.vue new file mode 100644 index 0000000000..4f225160e3 --- /dev/null +++ b/packages/nc-gui-v2/components/cell/Attachment.vue @@ -0,0 +1,338 @@ + + + + + diff --git a/packages/nc-gui-v2/components/cell/Checkbox.vue b/packages/nc-gui-v2/components/cell/Checkbox.vue new file mode 100644 index 0000000000..23d2d675b4 --- /dev/null +++ b/packages/nc-gui-v2/components/cell/Checkbox.vue @@ -0,0 +1,91 @@ + + + diff --git a/packages/nc-gui-v2/components/cell/Currency.vue b/packages/nc-gui-v2/components/cell/Currency.vue new file mode 100644 index 0000000000..dffa92938f --- /dev/null +++ b/packages/nc-gui-v2/components/cell/Currency.vue @@ -0,0 +1,37 @@ + + + + + diff --git a/packages/nc-gui-v2/components/cell/DatePicker.vue b/packages/nc-gui-v2/components/cell/DatePicker.vue new file mode 100644 index 0000000000..d461974693 --- /dev/null +++ b/packages/nc-gui-v2/components/cell/DatePicker.vue @@ -0,0 +1,91 @@ + + + + + diff --git a/packages/nc-gui-v2/components/cell/DateTimePicker.vue b/packages/nc-gui-v2/components/cell/DateTimePicker.vue new file mode 100644 index 0000000000..60232a7c25 --- /dev/null +++ b/packages/nc-gui-v2/components/cell/DateTimePicker.vue @@ -0,0 +1,146 @@ + + + + + diff --git a/packages/nc-gui-v2/components/cell/Duration.vue b/packages/nc-gui-v2/components/cell/Duration.vue new file mode 100644 index 0000000000..00a46e0847 --- /dev/null +++ b/packages/nc-gui-v2/components/cell/Duration.vue @@ -0,0 +1,110 @@ + + + + + + + diff --git a/packages/nc-gui-v2/components/cell/Email.vue b/packages/nc-gui-v2/components/cell/Email.vue new file mode 100644 index 0000000000..6c1e985ca7 --- /dev/null +++ b/packages/nc-gui-v2/components/cell/Email.vue @@ -0,0 +1,24 @@ + + + + + diff --git a/packages/nc-gui-v2/components/cell/Float.vue b/packages/nc-gui-v2/components/cell/Float.vue new file mode 100644 index 0000000000..56e12d0657 --- /dev/null +++ b/packages/nc-gui-v2/components/cell/Float.vue @@ -0,0 +1,38 @@ + + + + + diff --git a/packages/nc-gui-v2/components/cell/Integer.vue b/packages/nc-gui-v2/components/cell/Integer.vue new file mode 100644 index 0000000000..5cea217783 --- /dev/null +++ b/packages/nc-gui-v2/components/cell/Integer.vue @@ -0,0 +1,36 @@ + + + + + diff --git a/packages/nc-gui-v2/components/cell/JsonEditableCell.vue b/packages/nc-gui-v2/components/cell/JsonEditableCell.vue new file mode 100644 index 0000000000..9f9e2e00e8 --- /dev/null +++ b/packages/nc-gui-v2/components/cell/JsonEditableCell.vue @@ -0,0 +1,118 @@ + + + + + + + + diff --git a/packages/nc-gui-v2/components/cell/MultiSelect.vue b/packages/nc-gui-v2/components/cell/MultiSelect.vue new file mode 100644 index 0000000000..e66f11c5de --- /dev/null +++ b/packages/nc-gui-v2/components/cell/MultiSelect.vue @@ -0,0 +1,128 @@ + + + + + diff --git a/packages/nc-gui-v2/components/cell/Rating.vue b/packages/nc-gui-v2/components/cell/Rating.vue new file mode 100644 index 0000000000..0893d50bff --- /dev/null +++ b/packages/nc-gui-v2/components/cell/Rating.vue @@ -0,0 +1,51 @@ + + + + + diff --git a/packages/nc-gui-v2/components/cell/SingleSelect.vue b/packages/nc-gui-v2/components/cell/SingleSelect.vue new file mode 100644 index 0000000000..112e26f4b7 --- /dev/null +++ b/packages/nc-gui-v2/components/cell/SingleSelect.vue @@ -0,0 +1,122 @@ + + + + + + diff --git a/packages/nc-gui-v2/components/cell/Text.vue b/packages/nc-gui-v2/components/cell/Text.vue new file mode 100644 index 0000000000..b1de025b8d --- /dev/null +++ b/packages/nc-gui-v2/components/cell/Text.vue @@ -0,0 +1,100 @@ + + + + + + diff --git a/packages/nc-gui-v2/components/cell/TextArea.vue b/packages/nc-gui-v2/components/cell/TextArea.vue new file mode 100644 index 0000000000..c61427d171 --- /dev/null +++ b/packages/nc-gui-v2/components/cell/TextArea.vue @@ -0,0 +1,74 @@ + + +