How to get current cart values using WC_Shortcodes?

You can get the value by using the global var

 global $woocommerce;

 $cart_value = floatval( preg_replace( '#[^\d.]#', '', $woocommerce->cart->get_cart_total() ) );

Or

WC()->cart->total