@vygruppen/spor-react 13.5.0 → 13.6.0

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.cts CHANGED
@@ -4267,6 +4267,7 @@ declare const themes: {
4267
4267
  VyDigital: _chakra_ui_react.SystemContext;
4268
4268
  CargoNet: _chakra_ui_react.SystemContext;
4269
4269
  VyUtvikling: _chakra_ui_react.SystemContext;
4270
+ VyTeknologi: _chakra_ui_react.SystemContext;
4270
4271
  };
4271
4272
  declare const system: _chakra_ui_react.SystemContext;
4272
4273
 
@@ -4275,7 +4276,12 @@ declare const fontFaces: string;
4275
4276
 
4276
4277
  declare enum Brand {
4277
4278
  VyDigital = "VyDigital",
4279
+ /**
4280
+ * @deprecated The VyUtvikling theme is deprecated and will be removed in a
4281
+ * future major version. Use {@link Brand.VyTeknologi} instead.
4282
+ */
4278
4283
  VyUtvikling = "VyUtvikling",
4284
+ VyTeknologi = "VyTeknologi",
4279
4285
  CargoNet = "CargoNet"
4280
4286
  }
4281
4287
 
package/dist/index.d.ts CHANGED
@@ -4267,6 +4267,7 @@ declare const themes: {
4267
4267
  VyDigital: _chakra_ui_react.SystemContext;
4268
4268
  CargoNet: _chakra_ui_react.SystemContext;
4269
4269
  VyUtvikling: _chakra_ui_react.SystemContext;
4270
+ VyTeknologi: _chakra_ui_react.SystemContext;
4270
4271
  };
4271
4272
  declare const system: _chakra_ui_react.SystemContext;
4272
4273
 
@@ -4275,7 +4276,12 @@ declare const fontFaces: string;
4275
4276
 
4276
4277
  declare enum Brand {
4277
4278
  VyDigital = "VyDigital",
4279
+ /**
4280
+ * @deprecated The VyUtvikling theme is deprecated and will be removed in a
4281
+ * future major version. Use {@link Brand.VyTeknologi} instead.
4282
+ */
4278
4283
  VyUtvikling = "VyUtvikling",
4284
+ VyTeknologi = "VyTeknologi",
4279
4285
  CargoNet = "CargoNet"
4280
4286
  }
4281
4287
 
package/dist/index.mjs CHANGED
@@ -6665,6 +6665,7 @@ var fontFaces = `
6665
6665
  var Brand = /* @__PURE__ */ ((Brand2) => {
6666
6666
  Brand2["VyDigital"] = "VyDigital";
6667
6667
  Brand2["VyUtvikling"] = "VyUtvikling";
6668
+ Brand2["VyTeknologi"] = "VyTeknologi";
6668
6669
  Brand2["CargoNet"] = "CargoNet";
6669
6670
  return Brand2;
6670
6671
  })(Brand || {});
@@ -7757,6 +7758,9 @@ var vyDigitalColors = defineSemanticTokens.colors({
7757
7758
  var vyUtviklingColors = defineSemanticTokens.colors({
7758
7759
  ...tokens4.color["vy-utvikling"].color.vyUtvikling
7759
7760
  });
7761
+ var vyTeknologiColors = defineSemanticTokens.colors({
7762
+ ...tokens4.color["vy-teknologi"].color.vyTeknologi
7763
+ });
7760
7764
  var cargonetColors = defineSemanticTokens.colors({
7761
7765
  ...tokens4.color["cargonet"].color.cargonet
7762
7766
  });
@@ -7803,6 +7807,10 @@ var semanticTokens = {
7803
7807
  ...baseSemanticTokens,
7804
7808
  colors: vyUtviklingColors
7805
7809
  },
7810
+ ["VyTeknologi" /* VyTeknologi */]: {
7811
+ ...baseSemanticTokens,
7812
+ colors: vyTeknologiColors
7813
+ },
7806
7814
  ["CargoNet" /* CargoNet */]: {
7807
7815
  ...baseSemanticTokens,
7808
7816
  colors: cargonetColors
@@ -13155,6 +13163,10 @@ var themes = {
13155
13163
  ["VyUtvikling" /* VyUtvikling */]: createSystem(
13156
13164
  defaultBaseConfig,
13157
13165
  generateTheme("VyUtvikling" /* VyUtvikling */)
13166
+ ),
13167
+ ["VyTeknologi" /* VyTeknologi */]: createSystem(
13168
+ defaultBaseConfig,
13169
+ generateTheme("VyTeknologi" /* VyTeknologi */)
13158
13170
  )
13159
13171
  };
13160
13172
  var system = themes["VyDigital" /* VyDigital */];